Discuss this help topic in SecureBlackbox Forum

TElOAuth2Client.Scope

TElOAuth2Client     See also     


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


Specifies the access token scope.

Declaration

[C#]
    string Scope;

[VB.NET]
    Property Scope As String

[Pascal]
    property Scope : string;

[C++]
    void get_Scope(std::string &OutResult);
    void set_Scope(const std::string &Value);

[PHP]
    string get_Scope()
    void set_Scope(string $Value)

[Java]
    String getScope();
    void setScope(String Value);

Description

    This is an optional parameter that allows to limit the scope of the client access requests. The scope requested by the client is not always granted by the authorization server, and in such case must be present in the server's response. The scope is a string containing space-separated case-sensitive values, each defining a scope range.

See also:     AccessToken    

Discuss this help topic in SecureBlackbox Forum