My app authenticates users with the Swift supabase client. I can get a session this way. Then, to access database info, I have my own custom Express server that the app talks to. I want the iOS app to pass along this session info to Express, which makes use of a Supabase Server Client, to then make queries on my table. This way, I can benefit from the RLS rules that apply to the end user.
For the life of me, I can’t figure it out… all of the guides in the docs seem web-focused. My application is a pure API. Any caller should ideally be able to pass along its session info, and my Express server unpack it and pass it along to the Supabase Server Client.
How can I do this?