
I have my backend which exposes some endpoints let's say
/feed (return a hard coded json as response)
I want this to be only accessible to users who are currently logged in to my React Native frontend using the SDK and sessions (not JWT)
the endpoint is publicly open but I want to check if the request is coming from the authenticated user or not. If not then I will return 401
Wherever I looked, I only found the JWT solution which I don't want to use because it seems like one more thing to keep track of in my application.
Is it possible I can do this without JWT?

To be precise I want to check if the session of the user is valid or not.
Recommended threads
- Login with google error, Error 400: redi...
Hi, when i login with Oauth2 , using createOAuth2Session( 'google', 'http://localhost:5173/', 'http://localhost:5173/' ); It give...
- Google login error: {"message":"Invalid ...
hi, im trying to use google login with account.createOAuth2Session( 'google', 'profevardilla.pages.dev', 'profevardilla.pages.dev'...
- Create owner team member with Server fun...
I understand that when creating a team with a function, the user that made the request will not be the owner so I think I have to add the user that did the requ...
