GetOAuthAuthorizationUrl
Retrieves the OAuth Authorization URL, allowing the client to direct the user's browser to the authorization server and initiate the OAuth process.
Procedure-Specific Information
For example:
EXEC GetOAuthAuthorizationUrl CallbackUrl = 'https://localhost:33333'
Input
| Name | Type | Required | Description |
| CallbackUrl | String | False | The redirect URI where the user is sent after they authorize the app. |
| State | String | False | An optional value used to preserve application state and help protect against CSRF attacks. Because the service does not allow localhost redirect URIs, this parameter is commonly used to store the callback URL, unless the callback URL is a custom HTTPS URL. |
Result Set Columns
| Name | Type | Description |
| Url | String | The authorization URL the user should visit to grant access. This URL includes query parameters such as client ID and redirect URI. |