OAuth AccessTokenResponse Object
Contains information about the response to a request for an OAuth Access Token. Used by the token endpoint.
This object is used by the following operations:
- POST /oauth/oauth20/token
- GET /oauth/oauth20/token
- Any operations that use the ExtensibleOAuthToken object
The properties included in the AccessTokenResponse object are listed below.
| Property | Type | Description |
|---|---|---|
| access_token | string | access_token value. Always returned. |
| token_type | string | token_type value. Always returned. |
| expires_in | integer | expires_in value. Always returned. |
| refresh_token | string | refresh_token value: returned in scenarios where issue of a refresh token is valid. |
| id_token | string |
id_token value: returned if both these conditions apply:
|
| token_verifier | string | token_verifier value: OAuth 1.0a only. |
| mac_key | string | mac_key value: returned if OAuth version is 2.0 and MAC token is returned. |
| mac_algorithm | string | The algorithm for the MAC credentials: returned if OAuth version is 2.0 and MAC token is returned. |