Token Validation Error
The authorization server responds with an HTTP 400 (Bad Request) status code (unless specified otherwise) and includes the following parameters with the response:
| Parameter | Description |
|---|---|
| error | Specifies a single error code returned from the authorization server.
Required. Refer to table Token Validation Error Codes for the error codes. |
Note: Values for the invalid_grant, error_description, and error_uri, parameters
must not include characters outside the set %x20-21 / %x23-5B / %x5D-7E.
Token Validation Error Example
The error response is a HTTP response using the "application/json" media type as follows:
HTTP/1.1 400 Bad Request
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache
{
"error":"invalid_grant"
}