Discuss this help topic in SecureBlackbox Forum

TElOAuth2Client.State

TElOAuth2Client     See also     


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


Specifies the "state" parameter of the authorization request or response.

Declaration

[C#]
    string State;

[VB.NET]
    Property State As String

[Pascal]
    property State : string;

[C++]
    void get_State(std::string &OutResult);
    void set_State(const std::string &Value);

[PHP]
    string get_State()
    void set_State(string $Value)

[Java]
    String getState();
    void setState(String Value);

Description

    This parameter contains an opaque value used by the client to maintain state between the request and callback. If this parameter was present in the authorization request, the server should include the same value in its response.

See also:     AuthURL     Start    

Discuss this help topic in SecureBlackbox Forum