Errors
JWT Decoder and Signature Verifier Troubleshooting
Common issues and troubleshooting notes for the jwt decoder and signature verifier.
Page Summary
Paste a JWT to review its header and payload, inspect claim values and optionally verify HS256, HS384 or HS512 signatures with a local secret.
Use the troubleshooting notes below to identify common mistakes and fix them quickly.
Common Issues
Error 1
A valid JWT must contain three sections separated by dots.
Error 2
If the token payload is not valid Base64URL, the decoder cannot read it correctly.
Error 3
Verification fails when the secret or selected algorithm does not match the token signature.