What is a JWT token?
JSON Web Token (JWT) is a secure way to transmit information between parties. Used for authentication (login sessions) and data exchange. Contains three parts: Header (algorithm), Payload (user data), and Signature (verification).
