Francis
How do I implement authentication?
Generally when devs use JWT they aren't using cookies. Sure you can put the JWT inside a cookie but one main motivation of using JWT is to have the ability to identify a user without maintaining state on the server for sessions. Hence we say using JWT, session revokes is a hard problem, etc.
18 replies