Discuss this help topic in SecureBlackbox Forum

TElBoxDataStorage.CompleteAuthorization

TElBoxDataStorage     See also     


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


Retrieves an access token from the server.

Declaration

[C#]
    void CompleteAuthorization(string AuthorizationCode);

[VB.NET]
    Sub CompleteAuthorization(ByVal AuthorizationCode As String)

[Pascal]
    procedure CompleteAuthorization(const AuthorizationCode: string);

[C++]
    void CompleteAuthorization(const std::string &AuthorizationCode);

[PHP]
    void CompleteAuthorization(string $AuthorizationCode)

[Java]
    void completeAuthorization(String AuthorizationCode);

Parameters

  • AuthorizationCode - specifies the authorization code to be used to retrieve an access token.

Description

    Call this method after calling StartAuthorization and initialization of HTTP/HTTPS client to obtain the access and refresh (when appropriate) tokens from the server.

See also:     StartAuthorization     AccessToken     RefreshToken     HTTPClient    

Discuss this help topic in SecureBlackbox Forum