Type of Authentication — Session Based Authentication

Rupesh Kumar Tiwari
1 min readJul 6, 2020

Authentication is vital to most of the applications and the way it is achieved has evolved substantially in recent years. Basically there are three types of authentication:

Session Based Authentication
Cookie Based Authentication
JWT(JSON Web Tokens) Authentication

JWT Authentication is one of the most popular types in today’s world. Will discuss each type in detail in our subsequent video sessions. In this video tutorial Session Based Authentication, we will explain session based authentication with real world examples. Will also discuss its advantages & disadvantages.

Let’s say you are trying to login into your app with your user credentials. As soon as you will submit your details, request will be sent to server. Server will authenticate and create session key that it will pass to client. Now next time whenever you will try to retrieve your session, server will expect that the client will pass the session key to it to recognize you.

Now the problem comes when we use distributed server system with load balancer in large scale applications. Here when client sends your session key, it may or may not be received by the same server by which it was created. If it goes to other server then that will not be able to recognize you as all the servers create their independent session keys. This is one of the major problems in session based authentication.

--

--

Rupesh Kumar Tiwari

Pluralsight Author, Developer and Trainer. I help students and professionals to become Full Stack Software Developer in less than a Year.