verification_token_already_used
This OAuth verification token was already consumed by /verify/validate.
On this page
HTTP 409verificationoauthapitypescriptjava
Code: verification_token_already_used · Shape: oauth_validate
Meaning
This OAuth verification token was already consumed by /verify/validate.
Likely causes
- Double validate (UI retry, duplicate request)
- Two backend instances consuming the same token
- Client retried after a successful validate
How to diagnose
- Check whether validate already returned success once.
- Ensure idempotent session creation after first success.
How to fix
- Start a new OAuth login for a new validation.
- Do not retry validate with the same token.
Retry behavior
Do not retry. New login required.
Related
SDK: validateVerification(), validateVerification()
Troubleshooting: oauth
Guides: Server validation, Sessions
