Decodifica e ispeziona token JWT โ header, payload, scadenza. 100% localeDecode and inspect JWT tokens โ header, payload, expiry. 100% local
Un JSON Web Token (JWT) รจ un formato compatto per trasmettere informazioni tra parti in modo verificabile. ร composto da tre parti separate da punti: header.payload.signature. Header e payload sono semplice Base64url โ chiunque li puรฒ leggere. La firma garantisce che non siano stati alterati.
Firebase Authentication usa JWT come ID token. Quando un utente effettua il login, Firebase restituisce un token che le tue Cloud Functions o Netlify Functions possono verificare con Firebase Admin SDK.
A JSON Web Token (JWT) is a compact format for transmitting information between parties in a verifiable way. It's made of three parts separated by dots: header.payload.signature. The header and payload are plain Base64url โ anyone can read them. The signature guarantees they haven't been tampered with.
Firebase Authentication uses JWT as its ID token. When a user logs in, Firebase returns a token that your Cloud Functions or Netlify Functions can verify with the Firebase Admin SDK.
ร sicuro incollare il mio JWT qui?Is it safe to paste my JWT here?
Sรฌ. Questo strumento funziona 100% nel tuo browser โ il token non viene mai inviato a nessun server. Puoi verificarlo aprendo i DevTools di rete: non troverai nessuna request.Yes. This tool runs 100% in your browser โ the token is never sent to any server. You can verify this by opening the network DevTools: you won't find any request.
Questo strumento puรฒ verificare la firma?Can this tool verify the signature?
No โ la verifica della firma richiede la chiave segreta o il certificato pubblico del provider (es. Firebase). Questo tool mostra solo header e payload, utile per il debug. Per la verifica in produzione usa Firebase Admin SDK.No โ verifying the signature requires the provider's secret key or public certificate (e.g. Firebase). This tool only shows the header and payload, useful for debugging. For production verification, use the Firebase Admin SDK.