GetOAuthAccessToken
Gets the OAuth access token from Reckon Accounts Hosted.
Input
| Name | Type | Description |
| AuthMode | String | The type of authentication mode to use. Select App for getting authentication tokens via a windows forms app. Select Web for getting authentication tokens via a web app.
The allowed values are APP, WEB. The default value is APP. |
| CallbackUrl | String | The URL the user will be redirected to after authorizing your application. |
| Verifier | String | The verifier code returned by Reckon Accounts Hosted after permissions have been granted for the app to connect. WEB AuthMode only. |
| State | String | This field indicates any state that 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 ReckonAccountsHosted authorization server and back. Uses include redirecting the user to the correct resource in your site, using nonces, and mitigating cross-site request forgery. |
| Scope | String | The scopes or permissions you are requesting from Reckon Accounts Hosted. |
Result Set Columns
| Name | Type | Description |
| OAuthAccessToken | String | The OAuth token. |
| OAuthRefreshToken | String | The OAuth refresh token. |
| ExpiresIn | String | The remaining lifetime for the access token in seconds. |