Hello
I’ve looked at the nextjs-auth0
sdk and the presented examples for authentication and authorization provided are for server side / api scenarios using sessions and cookies.
What about if I am using CSR with NextJS? (my app is a client server architecture)
- What would be the ‘correct’
sdk
to use for authentication and authorization for nextjs using client side rendering?
(i.e generating tokens and protecting my pages, etc)
Thanks!