I'm developing a game using Flutter for a client, and C# for a server authoritative back end. They both connect to Appwrite perfectly fine. The client and server interact with gRPC.
My question is how would the server confirm the user is auth'd for this session, before it runs received gRPC calls? The user can log in, but how does the server know that they did. This isn't SSR, the client and server are two distinct things.
I'm still trying to wrap my head around sessions, auth, and web in general, so I might just not be understanding something.
Recommended threads
- How to handle ghost accounts created by ...
Appwrite create the account with the email and send an invitation link with a secret. I am able to accept the invitation and add the account as a member on the ...
- How to get current user account session ...
i am using sveltekit and i'm a bit unclear on how to get the current user's session from the server side. thisi s what i have so far // src/lib/server/appwrite...
- Realtime: Email Verification Not work
There are some issues with real-time updates. For email verification, updates triggered by the console will be checked, but real-time updates are not triggered ...