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 fully qualified redirect URI to which Instagram will send the user after authorization is complete. This must match a value configured in your app's settings, and it typically handles the authorization code or access token exchange logic. |
| Scope | String | A space-separated list of permissions or scopes being requested from the user during authorization. For OAuthGrantType='CODE', these are user-facing scopes. For OAuthGrantType='CLIENT', use 'https://graph.microsoft.com/.default' to leverage preconfigured application permissions. |
| State | String | A unique string value to maintain state between your authorization request and the response. It is useful for preventing cross-site request forgery (CSRF) attacks and identifying user sessions. |
Result Set Columns
| Name | Type | Description |
| URL | String | The generated authorization URL that users can visit in their Web browser to authenticate and provide authorization to your application. |