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 request the OAuthAccessToken from this URL.
Input
| Name | Type | Required | Description |
| CallbackUrl | String | False | The URL the user is redirected to after authorizing your application. This value must match the Redirect URL in the Kintone app settings. |
| State | String | False | Encoded state of the app, which is returned verbatim in the response and can be used to match the response up to a given request. |
| Scope | String | False | A space separated list of scopes limiting an application's access to a user's account.
The default value is k:app_record:read k:app_record:write k:app_settings:read k:app_settings:write k:file:read k:file:write. |
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. |