Discuss this help topic in SecureBlackbox Forum

TElOAuth2Client.AccessToken

TElOAuth2Client     See also     


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


Returns the access token.

Declaration

[C#]
    string AccessToken;

[VB.NET]
    Property AccessToken As String

[Pascal]
    property AccessToken : string;

[C++]
    void get_AccessToken(std::string &OutResult);

[PHP]
    string get_AccessToken()

[Java]
    String getAccessToken();

Description

    Use this read-only property to get the access token. An access token is a credential that allows to access protected resources; it is usually a string that is opaque to the client. Use Start method to generate a new access token request. When current token expires, and a refresh token is available, call Refresh method to generate the access token refresh request.

See also:     ExpiresIn     TokenType     TokenURL     RefreshToken     Refresh     Start    

Discuss this help topic in SecureBlackbox Forum