Refresh Token Error Responses
Copy
Refresh token is not authorized by OpenID client
HTTP/1.1 400 Bad Request
Cache-Control: no-store
Pragma: no-cache
Content-Type: application/json;charset=UTF-8
{
"error_description":"Invalid, unknown or malformed scope:Scope not allowed by initial authorization request",
"error":"invalid_scope"
}
Copy
Refresh token is not valid (expired, already used or wrong token)
HTTP/1.1 400 Bad Request
Cache-Control: no-store
Pragma: no-cache
Content-Type: application/json;charset=UTF-8
{
"error_description":"Invalid grant:No such session: ",
"error":"invalid_grant"
}