Pular para o conteúdo

Decodificador JWT

Decodifique JWT (JSON Web Token) no navegador e visualize o cabeçalho, carga útil e assinatura.iat / exp / nbf será convertido automaticamente em data e hora.

100% Free No signup Browser-only 5 languages Dark mode

Sobre a estrutura do JWT

JWT é header.payload.signature dos 3 partes com ponto (.)é uma string concatenada. O cabeçalho e a carga útil são JSON codificados em Base64URL, e a assinatura é gerada usando o algoritmo especificado no cabeçalho(HS256 / RS256, etc.)。

Reclamação principal: iss(emissor)、sub(assunto)、aud(destinatário)、exp(data de expiração)、nbf(data e hora de início de validade)、iat(data e hora de emissão)、jti(ID JWT)

Se não funcionar corretamente ou a exibição estiver incorreta Formulário de contato からご報告ください。

📖 Como usar

  1. 1
    Copy your JWT
    Get the JWT string from your API response or Authorization header.
  2. 2
    Paste into the input
    Paste the JWT into the top textarea and decoding runs automatically.
  3. 3
    Inspect header & payload
    View algorithm (alg), issuer (iss), expiration (exp) and other claims visually.

❓ Perguntas frequentes

What is a JWT?
A JWT (JSON Web Token) is an authentication token made of three Base64URL-encoded parts (header.payload.signature) joined with dots. Commonly used for API auth after login.
Can this tool verify the signature?
This tool is decode-only. Signature verification needs the secret (HS256) or public key (RS256/ES256) — use our JWT Signer tool or verify on your backend.
Is the JWT sent to any server?
No. All decoding happens in your browser via JavaScript — no network request is made.
What if exp is expired?
An expired JWT is invalid. Use the refresh token to get a new JWT, or re-login. Always validate exp on the client side too.
🐛 Você encontrou um problema com esta ferramenta?

Completamente gratuito e sem registro. Até as etapas de reprodução são suficientes. Os relatos recebidos chegam diretamente aos operadores e servem como referência para correções.

※ Para reproduzir problemas, informações do navegador (UA / tamanho de tela / idioma / URL) são enviadas automaticamente