Discuss this help topic in SecureBlackbox Forum

TElOAuth2Client.RefreshToken

TElOAuth2Client     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Returns the refresh token value.

Declaration

[C#]
    string RefreshToken;

[VB.NET]
    Property RefreshToken As String

[Pascal]
    property RefreshToken : string;

[C++]
    void get_RefreshToken(std::string &OutResult);
    void set_RefreshToken(const std::string &Value);

[PHP]
    string get_RefreshToken()
    void set_RefreshToken(string $Value)

[Java]
    String getRefreshToken();
    void setRefreshToken(String Value);

Description

    A refresh token is the credential issued (optionally) to the client by the authorization server, and is used to obtain a new access token when, for instance, curent access token expires or becomes invalid. As the AccessToken, the refresh token is usually opaque to the client.

See also:     AccessToken     Refresh    

Discuss this help topic in SecureBlackbox Forum