GetOAuthAccessToken
Gets the OAuth access token from BingAds.
Input
Name | Type | Required | Description |
AuthMode | String | False | The type of authentication you are attempting. Use App for a Windows application, or Web for Web-based applications.
The default value is APP. |
Verifier | String | False | A verifier returned by the service that must be input to return the access token. Needed only when using the Web auth mode. Obtained by navigating to the URL returned in GetOAuthAuthorizationUrl. |
CallbackUrl | String | False | The URL the user will be redirected to after authorizing your application. |
Scope | String | False | The scope or permissions you are requesting. |
Prompt | String | False | Defaults to 'select_account' which prompts the user to select account while authenticating. Set to 'None', for no prompt, 'login' to force user to enter their credentials or 'consent' to trigger the OAuth consent dialog after the user signs in, asking the user to grant permissions to the app. |
Result Set Columns
Name | Type | Description |
OAuthAccessToken | String | The authentication token returned from BingAds. |
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. |