Error Reference
TOKEN_EXPIRED
The provided token is no longer valid because it expired.
This error means the token passed validation format checks but is expired.
Typical causes
- JWT
expclaim is in the past - OAuth access token is no longer active
How to fix
- Refresh or reissue your token.
- Retry the request with the new token.
Example
{
"errors": [
{
"message": "Invalid or expired JWT",
"code": "TOKEN_EXPIRED",
"documentation": "https://developers.rad.live/docs/errors/token_expired"
}
]
}