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 URL the user will be redirected to after authorizing your application. |
| Scope | String | A space-separated scope of permissions you need the app to have access to. The available values are restlets, rest_webservices. For more details, refer to: https://netsuite.custhelp.com/app/answers/detail/a_id/91339.
The default value is rest_webservices. |
| State | String | Any value that you wish to be sent with the callback. Length of the state parameter must be between 24 and 1024 characters. A state is required for OAuth 2.0 connections. |
Result Set Columns
| Name | Type | Description |
| AuthToken | String | The authorization token. |
| AuthKey | String | The authorization token key. |
| AuthSecret | String | This field is deprecated. Please use AuthKey going forward. |
| URL | String | The authorization URL, entered into a Web browser to obtain the verifier token and authorize your app. |