GetOAuthAccessToken
Gets the OAuth access token from Tableau CRM.
Input
Name | Type | Description |
AuthMode | String | The type of authentication mode to use. The allowed values are APP, WEB. |
Verifier | String | The verifier token returned by Tableau CRM after using the URL obtained with GetOAuthAuthorizationURL. Required for only the Web AuthMode. |
Scope | String | The scope or permissions you are requesting.
The default value is api wave_api refresh_token offline_access. |
CallbackUrl | String | The URL the user will be redirected to after authorizing your application. |
State | String | Indicates any state which may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to the TableauCRM authorization server and back. Uses include redirecting the user to the correct resource in your site, using nonces, and mitigating cross-site request forgery. |
PKCEVerifier | String | The PKCEVerifier returned by GetOAuthAuthorizationURL. Only required when AuthScheme=OAuthPKCE. |
Result Set Columns
Name | Type | Description |
OAuthAccessToken | String | The authentication token returned from Tableau CRM. |
OAuthRefreshToken | String | A token that may be used to obtain a new access token. |
ExpiresIn | String | The remaining lifetime for the access token in seconds. |
InstanceUrl | String | The URL of the Salesforce instance. |