Discuss this help topic in SecureBlackbox Forum

TElSimpleOAuth2Client.RedirectURL

TElSimpleOAuth2Client     See also     


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


The URL where the resource owner is redirected after authorization.

Declaration

[C#]
    string RedirectURL;

[VB.NET]
    Property RedirectURL As String

[Pascal]
    property RedirectURL : string;

[C++]
    void get_RedirectURL(std::string &OutResult);
    void set_RedirectURL(const std::string &Value);

[PHP]
    string get_RedirectURL()
    void set_RedirectURL(string $Value)

[Java]
    String getRedirectURL();
    void setRedirectURL(String Value);

Description

Use this property to specify the URL on which the local HTTP server should open the listening port and wait for response from the authorization server. When the port number is explicitly specified, e.g., "http://localhost:5050/", the application has to be allowed to open a listening socket on that port.

See also:     OnLaunchBrowser     AuthURL    

Discuss this help topic in SecureBlackbox Forum