AccessTokenResponse Data Type

A response to a successful access token request, as described in RFC 6749 Section 5.1.

Properties
name data type description
access_token string The access token.
token_type string The type of token.
expires_in number The lifetime in seconds of the token.
scope string The scope of the access token.

Example

{
  "access_token" : "...",
  "token_type" : "bearer",
  "expires_in" : 3600,
  "scope" : ""
}