GetOAuthAuthorizationURL
Retrieves the OAuth Authorization URL, allowing the client to direct the user's browser to the authorization server and initiate the OAuth process.
Input
Name | Type | Description |
CallbackUrl | String | The URL where GitHub redirects the user to after they authorize your application. |
Scope | String | The scope or permissions you are requesting from the user. |
State | String | A field to hold any state information useful to your application. The same value you send is returned to your application, which can be used for redirection purposes, handling nonces, or preventing cross-site request forgery. |
Result Set Columns
Name | Type | Description |
URL | String | The URL that needs to be entered into a web browser to obtain the verifier token and authorize the data provider with GitHub. |