Discuss this help topic in SecureBlackbox Forum

TElOAuth2Client.UseURLParams

TElOAuth2Client     See also     


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


Specifies how client ID and client secret are sent during authorization.

Declaration

[C#]
    bool UseURLParams;

[VB.NET]
    Property UseURLParams As Boolean

[Pascal]
    property UseURLParams : Boolean;

[C++]
    bool get_UseURLParams();
    void set_UseURLParams(bool Value);

[PHP]
    bool get_UseURLParams()
    void set_UseURLParams(bool $Value)

[Java]
    boolean getUseURLParams();
    void setUseURLParams(boolean Value);

Description

    Normally, during OAuth 2.0 authorization the client provides his identifier and secret in the authorization header field. However, not all authorization servers support this behavior. When communicating with such servers, set UseURLParams to True, and client identifier and client secret will be sent as request parameters. The default value is False.

See also:     Start     GrantType    

Discuss this help topic in SecureBlackbox Forum