OAuth2 callback
OAuth2 callback
Path Parameters
callback string required
The identity provider name.
Query Parameters
access_token string required
The access token issued by the authorization server.
token_type string required
The type of the token issued as described in [RFC6479] Section 7.1. Value is case insensitive.
expires_in string
The lifetime in seconds of the access token. For example, the value "3600" denotes that the access token will expire in one hour from the time the response was generated.If omitted, the authorization server SHOULD provide the expiration time via other means or document the default value.
scope string
if identical to the scope requested by the client;otherwise, REQUIRED. The scope of the access token as described by [RFC6479] Section 3.3.
state string required
if the "state" parameter was present in the client authorization request.The exact value received from the client.
Responses
- 200
ok
application/json
Schema
Example (from schema)
Schema
access_token string required
expires_in int32
id_token string
refresh_token string
token_type string
{
"access_token": "string",
"expires_in": 0,
"id_token": "string",
"refresh_token": "string",
"token_type": "string"
}
Loading...