GetOAuthAuthorizationURL
Generates an authorization URL for user consent, required when integrating S3 access into web applications via OAuth.
Input
| Name | Type | Required | Description |
| CallbackUrl | String | False | The redirect URL where the user is sent after granting or denying access to the application. |
| Scopes | String | False | A comma-separated list of the permissions (scopes) the application is requesting from the user. |
| State | String | False | A value passed through the OAuth flow and returned by the authorization server. This is commonly used to preserve application state, prevent CSRF attacks, or redirect the user to the correct resource after authorization. |
Result Set Columns
| Name | Type | Description |
| URL | String | The generated authorization URL that the user must open in a browser to grant access and receive the verifier token. |