-
Can you explain the steps that take place when a user signs in to a website?
-
Where are each of session/cookie and JWT data stored?
-
Which technology is stateful and which is stateless and what is the different between both?
-
What are the advantages and disadvantages of each of them in your opinion?
-
Overall which one would you prefer to use and why?
-
-
Save Kishimoto96/d868e8c4f42a5ef895178ab7b7d68b0a to your computer and use it in GitHub Desktop.
cookies vs jwt for auth
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@motaz99, @tareq, @rayan, @nour KRIMESH
clearing session ID cookie from browser.
authentication.
process subsequent requests.
2. Stateless technologies (like React and Vue) do not maintain any client-specific data on the server and treat each request as a
new request.