DevToolBoxGRATUIT
Blog

Décodeur JWT

Décodez et inspectez les JSON Web Tokens. Visualisez l'en-tête, la charge utile et la signature.

À propos des JSON Web Tokens

JWT (JSON Web Token) est un format de jeton compact et sécurisé pour les URL, utilisé pour l'authentification et l'échange d'informations. Un JWT se compose de trois parties : l'en-tête (algorithme et type), la charge utile (revendications et données) et la signature (vérification). Les JWT sont couramment utilisés dans OAuth 2.0, OpenID Connect et l'authentification API.

𝕏 Twitterin LinkedIn

Notez cet outil

3.9 / 5 · 77 avis

Restez informé

Recevez des astuces dev et les nouveaux outils chaque semaine.

Pas de spam. Désabonnez-vous à tout moment.

Enjoy these free tools?

Buy Me a Coffee

Comment utiliser

  1. Paste your JWT token in the input field
  2. The header, payload, and signature are decoded automatically
  3. View expiration time and other claims
  4. Copy decoded sections as needed

Cas d'utilisation

  • Debugging authentication tokens
  • Inspecting JWT claims and expiration
  • Verifying token structure during development
  • Understanding OAuth2 and API tokens

Questions fréquentes

What is a JWT?
JWT (JSON Web Token) is a compact, URL-safe token format used for authentication and information exchange. It contains a header, payload, and signature.
Is it safe to decode JWTs here?
Yes. Decoding happens entirely in your browser. No tokens are sent to any server. Note: decoding only reads the token — it does not verify the signature.
Can this tool verify JWT signatures?
This tool decodes and displays the token contents. Signature verification requires the secret key, which should not be entered into any online tool.