JWT Token 解码器
在线解码和检查 JWT 令牌。即时查看任何 JSON Web Token 的 Header、Payload 和 Signature。
JWT 结构参考
JWT 结构
JWT 由三个 Base64URL 编码的部分组成,用点分隔:Header.Payload.Signature
Header
Algorithm + Type
.
Payload
Claims / Data
.
Signature
Verification
Header 字段
| Field | Name | Description |
|---|---|---|
| alg | Algorithm | Signing algorithm (HS256, RS256, ES256, etc.) |
| typ | Type | Token type, typically "JWT" |
| kid | Key ID | Identifier for the signing key used |
| jku | JWK Set URL | URL to the JSON Web Key Set |
| x5u | X.509 URL | URL to the X.509 certificate chain |
注册 Payload 声明
| Claim | Name | Description |
|---|---|---|
| iss | Issuer | Entity that issued the JWT |
| sub | Subject | Subject of the JWT (user ID) |
| aud | Audience | Recipient(s) the JWT is intended for |
| exp | Expiration | Timestamp after which the JWT expires |
| nbf | Not Before | Timestamp before which the JWT is not valid |
| iat | Issued At | Timestamp when the JWT was issued |
| jti | JWT ID | Unique identifier for the JWT |
常见问题
相关 JWT 工具
评价此工具
4.0 / 5 · 145 人评价
Recommended
CloudflareFree CDN & DDoS protection保持更新
获取每周开发技巧和新工具通知。
无垃圾邮件,随时退订。
Enjoy these free tools?
☕Buy Me a Coffee