Skip to main content
devtools24

منشئ JWT

إنشاء وتوقيع JSON Web Tokens مع حمولات مخصصة، أو فك تشفير والتحقق من الرموز الموجودة. تتم جميع المعالجة في متصفحك.

الإدخال
الإخراج
Result appears here

About JWT

  • iat - Issued At: When the token was created
  • exp - Expiration: When the token expires
  • nbf - Not Before: Token not valid before this time
  • sub - Subject: Who the token is about
  • jti - JWT ID: Unique identifier for the token

JSON Web Tokens - التفاصيل التقنية

JWTs are compact, URL-safe tokens for securely transmitting information between parties. They consist of three parts: header, payload, and signature. JWTs are commonly used for authentication and information exchange.

بديل سطر الأوامر

# Decode JWT (without verification)\necho 'eyJ...' | cut -d'.' -f2 | base64 -d\n\n# Or use jwt-cli\nnpm install -g jwt-cli\njwt decode eyJ...

المرجع

عرض المواصفات الرسمية