Hello All
it is possible to read an Auth0 session cookie in an Nestjs/Express application. I am generating this cookie via a Remix.js application using the remix-auth-auth0 lib and am able to read it in the app using the built in getSession
method provided by the library.
Now want to call an external API that I have built in nestjs and am having a hard time verifying the session cookie.
Is there a library that I can use to be able to verify an existing Auth0 session cookie? or is there any way to validate a user through the cookie in nest/express app?
just to clarify i want to avoid going threw remix routing mechanism for retrieving accesses token.
Thanks for the help.