TokenResponse
access_tokenstring
The access token
token_typestring
Example:
bearerexpires_ininteger
Token lifetime in seconds
Example:
3600refresh_tokenstring
The refresh token (if offline or offline_access scope was granted)
id_tokenstring
The ID token (if openid scope was requested)
scopestring
Space-separated list of granted scopes
TokenResponse
{
"access_token": "string",
"token_type": "bearer",
"expires_in": 3600,
"refresh_token": "string",
"id_token": "string",
"scope": "string"
}