한국어

JWT Decoder

Decode and inspect JSON Web Tokens

Advertisement
Header
Payload
Signature
..
Advertisement

What is JWT?

JSON Web Token (JWT) is an open standard (RFC 7519) for securely transmitting information between parties as a JSON object. JWTs are commonly used for authentication and authorization in web applications.

A JWT consists of three parts separated by dots:

Header - Contains token type and signing algorithm

Payload - Contains claims (user data and metadata)

Signature - Verifies token integrity

Common JWT Claims

iss - Issuer of the token

sub - Subject (usually user ID)

aud - Audience (intended recipient)

exp - Expiration time

nbf - Not before time

iat - Issued at time

jti - JWT ID (unique identifier)