...

/

Standardize JWT for Security (Access) Token

Standardize JWT for Security (Access) Token

Learn to standardize access control using JWT and how to validate JWT post-authentication.

There are two modes we can use while designing an application using REST APIs. These modes are used to pass the information from client to server, and vice versa.

  1. Stateful mode, so that we can pass some key critical information in our current session.
  2. Stateless mode, meaning we do not use sessions to store or pass any information between client and server. JSON Web Token (JWT) is a secure way to
...