DevToolBoxฟรี
บล็อก

ตัวถอดรหัส JWT

ถอดรหัสและตรวจสอบ JSON Web Token ดู header, payload และ signature ฟรี ไม่ต้องสมัครสมาชิก

เกี่ยวกับ JSON Web Token

JWT (JSON Web Token) เป็นรูปแบบโทเค็นที่กระทัดรัดและปลอดภัยสำหรับ URL ใช้สำหรับการพิสูจน์ตัวตนและการแลกเปลี่ยนข้อมูล JWT ประกอบด้วย 3 ส่วน: Header (อัลกอริทึมและประเภท) Payload (claims และข้อมูล) และ Signature (การยืนยัน) JWT ใช้กันทั่วไปใน OAuth 2.0, OpenID Connect และการพิสูจน์ตัวตน API

Frequently Asked Questions

What is JWT and why is it used?
JWT (JSON Web Token) is a compact, self-contained way to transmit information as a JSON object. It's widely used for authentication and authorization in APIs. The token is signed, so the server can verify it hasn't been tampered with. See Hash Generator for understanding token signatures.
Is it safe to paste my JWT token here?
This tool runs entirely in your browser—no data is sent to any server. However, JWTs often contain sensitive user information, so be careful pasting production tokens. Never share tokens with untrusted tools or paste them in public channels.
What's the difference between JWT and JWE?
JWT (Signed) proves the token wasn't modified and shows the payload in plain text (base64 encoded). JWE (Encrypted) encrypts the payload so only the intended recipient can read it. Use JWE when the payload contains truly sensitive data that shouldn't be visible to anyone with the token.
What is the "exp" claim and why does it matter?
The "exp" (expiration time) claim specifies when the token is no longer valid. Check this with your Unix timestamp converter to see if a token has expired. Always validate token expiration on the server before trusting it.
𝕏 Twitterin LinkedIn

💬 User Feedback

Have suggestions or found a bug? Leave a message and we'll get back to you.
0/2000

ให้คะแนนเครื่องมือนี้

3.9 / 5 · 77 คะแนน

เครื่องมือเพิ่มเติม

JDJwt Token DecoderJPJwt ParserJVJwt Validator→BBase64 Decoder

อัปเดตข่าวสาร

รับเคล็ดลับการพัฒนาและเครื่องมือใหม่ทุกสัปดาห์

ไม่มีสแปม ยกเลิกได้ตลอดเวลา

Enjoy these free tools?

Buy Me a Coffee

วิธีใช้งาน

  1. Paste your JWT token in the input field
  2. The header, payload, and signature are decoded automatically
  3. View expiration time and other claims
  4. Copy decoded sections as needed

กรณีการใช้งาน

  • Debugging authentication tokens
  • Inspecting JWT claims and expiration
  • Verifying token structure during development
  • Understanding OAuth2 and API tokens

คำถามที่พบบ่อย

What is a JWT?
JWT (JSON Web Token) is a compact, URL-safe token format used for authentication and information exchange. It contains a header, payload, and signature.
Is it safe to decode JWTs here?
Yes. Decoding happens entirely in your browser. No tokens are sent to any server. Note: decoding only reads the token — it does not verify the signature.
Can this tool verify JWT signatures?
This tool decodes and displays the token contents. Signature verification requires the secret key, which should not be entered into any online tool.