JWT डिकोडर ऑनलाइन — मुफ़्त टोकन हेडर और पेलोड डिकोड
JSON Web Token को ब्राउज़र में डिकोड करें और हेडर और पेलोड देखें। हस्ताक्षर मान्य नहीं किया जाता — केवल डिबगिंग के लिए।
नीचे JWT पेस्ट करें। हेडर और पेलोड Base64URL से स्थानीय रूप से डिकोड होते हैं; टोकन पृष्ठ से बाहर नहीं जाता।
सामान्य उपयोग
- 1Inspect an OAuth access token to check its expiration, audience and scopes.
- 2Debug a third-party SSO failure by reading the claims the IdP signed.
- 3Verify your app emits the JWT shape you expect before integration testing.
अक्सर पूछे जाने वाले प्रश्न
Why isn't the signature verified?+
Verification needs the issuer's public key (RS256 / ES256) or shared secret (HS256). That is an infrastructure decision — use jose / jsonwebtoken with the right key for that. This tool decodes only.
Is my token safe to paste here?+
Decoding runs entirely in your browser; the token never leaves the page. However, an ACTIVE access token still carries your identity — if it is in use, redact sensitive claims after debugging.
Why does my token decode to gibberish?+
It is probably not a JWT. Real JWTs always have three Base64URL parts separated by dots (header.payload.signature). Opaque tokens (random strings) do not decode to JSON.