invalid_verification_token
POST /verify/validate rejected the verification/access token.
On this page
HTTP 401verificationoauthapitypescriptjava
Code: invalid_verification_token · Shape: oauth_validate
Meaning
POST /verify/validate rejected the verification/access token.
Likely causes
- Token missing/malformed
- Token expired
- Wrong client_id for the token
- Browser success but wrong token forwarded to backend
How to diagnose
- Validate response often looks like { valid: false, error } without error_description
- Confirm backend receives access_token / verification_token from the browser result
How to fix
- Send the fresh token from the latest successful exchange
- Call validate once before creating your session
Retry behavior
Do not retry the same bad token. Restart login if needed.
Related
SDK: validateVerification(), validateVerification()
Troubleshooting: oauth
Guides: Server validation, Sessions
