Francis
Francis
SSolidJS
Created by pronoob on 11/10/2023 in #support
How do I implement authentication?
For my own SolidJS/GraphQL app I just use session cookies, no JWT, but the cookie contains a token that is generated by the server-side framework
18 replies
SSolidJS
Created by pronoob on 11/10/2023 in #support
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
SSolidJS
Created by pronoob on 11/10/2023 in #support
How do I implement authentication?
Why use JWT instead of session cookies?
18 replies