Invalid grant
The authorization code or refresh token is invalid or expired.
- invalid_grant
- 400
- bad-body
- error
- No
- oauth
How to fix
Review the request and try again. The response `detail` explains the specific problem.
Example response
Every error is returned as application/problem+json (RFC 9457). The detail is the specific, actionable message; the code is stable and safe to branch on.
{
"type": "https://skedcast.com/errors/invalid_grant",
"title": "Invalid grant",
"status": 400,
"category": "bad-body",
"code": "invalid_grant",
"detail": "The authorization code or refresh token is invalid or expired.",
"correlationId": "c-1f2e3d4c-…",
"severity": "error"
}Handle it in code
try {
await skedcast.posts.create(input);
} catch (err) {
if (err instanceof SkedcastApiError && err.code === 'invalid_grant') {
// The authorization code or refresh token is invalid or expired.
}
}