Authentication, Authorization and Session Management in Traditional Web Apps and APIs
HTTP Protocol is stateless by design, each request is done separately and is executed in a separate context. The idea behind session management is to put requests from the same client in the same context. This is done by issuing an identifier by the server and sending it to the client, then the client would … Read more