Token Input
Decoded JSON
HS Signature Verification
Local HS256 Test Token Generator
Decoding is not the same as validation
Decode header and payload locally, inspect registered claims, review timeline status, and copy safe debugging notes without sharing raw tokens.
A pasted token is not sent by the decoder itself.
What to check
- Methodology: split the token locally, base64url-decode header and payload, then compare claim timing and expectations before backend validation.
- Verify issuer, audience, expiry, not-before, algorithm, key id, scopes, and server-side signature validation.
- Use only redacted or test tokens in screenshots, support tickets, documentation, and chat.
- Confirm backend validation behavior with the real auth provider or API gateway before trusting claims.
Limitations
- Disclaimer: local debug utility only. Decoded payload text is not proof that a token is valid or authorized.
- HS signature checks need the exact development secret and do not cover asymmetric JWKS workflows.
- Never paste production bearer tokens, refresh tokens, client secrets, or private keys into shared output.
Source/reference note: verify auth behavior against current identity-provider docs, JWKS metadata, API gateway rules, and backend tests.