Go to developer

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

  1. Token missing/malformed
  2. Token expired
  3. Wrong client_id for the token
  4. 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.

API: POST /verify/validate

SDK: validateVerification(), validateVerification()

Troubleshooting: oauth

Guides: Server validation, Sessions