Concept Flow - JWT token verification
Receive HTTP request with JWT token
Extract token from Authorization header
Decode token using secret key
Check token signature validity
Check token expiry
If expired?
Reject
Return response
This flow shows how a JWT token is extracted, decoded, verified for signature and expiry, then either accepted or rejected.