🔐

Dual-Token Authentication

Used for user identification and authorization
Used for session management and CSRF protection
How to get your tokens:

JWT Token: Obtained after login to the authentication service

Laravel Token: Sanctum token from your Laravel application

Both tokens are required for maximum security. The system validates:

  • JWT signature and expiration
  • Laravel token against user session
  • Consistency between both tokens
🔒
Dual Authentication
JWT + Laravel Sanctum for maximum security
👁️
Session Validation
Real-time session synchronization
🔄
Token Refresh
Automatic token renewal before expiration
🔑
Key Rotation
Periodic key updates for enhanced security