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 after they have authorized your application. This should match the callback URL configured in your GitHub app settings. |
| Scope | String | Specifies the permissions or access levels being requested, such as 'repo', 'user', or other GitHub scopes. |
| State | String | A unique value sent with the authorization request to maintain application state and mitigate cross-site request forgery (CSRF). GitHub returns the same value, enabling your application to validate the response and redirect the user appropriately. |
Result Set Columns
| Name | Type | Description |
| URL | String | The authorization URL generated by GitHub. Users must visit this URL in their web browser to grant access to your application and receive a verifier token. |