statelessToken
StatelessToken refers to a type of authentication token designed to eliminate server-side session state by embedding the necessary identity and authorization data within the token itself. In practice, stateless tokens are often self-contained and cryptographically signed, most commonly in the form of a JSON Web Token (JWT) or similar construct.
How it works: After a successful authentication, an issuing authority issues a StatlessToken to the client.
Advantages include improved scalability and simplified infrastructure because servers do not maintain session state, aiding stateless
Drawbacks and considerations involve token revocation and rotation challenges since a compromised token can remain valid