JWT 解码器:快速上手指南
第一次使用就能成功所需的全部内容:该粘贴什么、哪个选项真正重要、以及如何读懂结果。
使用方法
- 打开工具,将内容粘贴到左侧输入框。
- 只调整任务真正需要的选项——多数情况下默认值就是正确的。
- 在右侧查看结果,输入时结果会实时更新。
- 用「复制」取走结果,或用「下载」保存为文件。
示例
Decoded without verification.
输入
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30
输出 — 搜索结果
<table class="tb-table"><tr><th colspan="2">Header</th></tr><tr><td>alg</td><td><code>"HS256"</code></td></tr><tr><td>typ</td><td><code>"JWT"</code></td></tr></table><table class="tb-table"><tr><th colspan="2">Payload</th></tr><tr><td title="Subject">sub <small>(Subject)</small></td><td><code>1234567890</code></td></tr><tr><td title="">name</td><td><code>John Doe</code></td></tr><tr><td title="">admin</td><td><code>true</code></td></tr><tr><td title="Issued at">iat <small>(Issued at)</small></td><td><code>1516239022 → 2018-01-18T01:30:22.000Z (EXPIRED/past)</code></td></tr></table><p class="tb-note">Algorithm: <b>HS256</b> · Signature present: yes (not verified — verification needs the secret/public key) · no exp claim</p>
运行
说明
Inspect JWT header, payload and signature metadata.
相关工具
Strong 密码生成器Crypto-random passwords with full policy control.密码短语生成器Diceware-style memorable passphrases.密码 Strength 测试器Estimate entropy and crack-time of a password.APIKey 生成器Random hex / Base64 secrets of any length.基础 AuthHeader 生成器Build and decode Authorization: Basic headers.校验和验证器Compare a file hash against the published digest.