No description available.
Parameters
Output
Encoding
application/jsonaccessToken
string
Required
No description available.
refreshToken
string
Required
No description available.
Errors
invalidSession
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "invalidSession"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"refreshToken",
"accessToken"
],
"properties": {
"accessToken": {
"type": "string"
},
"refreshToken": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"code",
"state"
],
"properties": {
"iss": {
"type": "string"
},
"code": {
"type": "string"
},
"error": {
"type": "string"
},
"state": {
"type": "string"
},
"error_uri": {
"type": "string",
"format": "uri"
},
"error_description": {
"type": "string"
}
}
}
}