GetOAuthAuthorizationURL
Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the OAuthAccessToken from this URL.
Input
Name | Type | Required | Description |
CallbackUrl | String | False | The URL the user will be redirected to after authorizing your application. This value must match the Redirect URL in the Zendesk app settings.
デフォルト値はhttp://localhost:33333です。 |
Scope | String | False | A comma-separated list of permissions to request from the user. Please check the Zendesk API for a list of available permissions.
デフォルト値はread writeです。 |
State | String | False | The same value for state that you sent when you requested the authorization code. |
Result Set Columns
Name | Type | Description |
URL | String | The authorization URL, entered into a Web browser to obtain the verifier token and authorize your app. |