Hi,
I am new to Supabase and still working my way through how to authenticate and have a few questions.
If I have Row Level Security turned on in Supabase, what do I have to do to run queries?
Thanks
Steve
Hi,
I am new to Supabase and still working my way through how to authenticate and have a few questions.
If I have Row Level Security turned on in Supabase, what do I have to do to run queries?
Thanks
Steve
with RLS turned on, you’ll usually be sending requests that include the users authToken in the header
So, you make the original login attempt. Supabase returns an access_token
so then in subsequent API calls you’ll use thatt value PLUS your public API key in your api call headers.
and then you execute the GET/POST/PUT/DELETE
e.g.
Thanks very much!!
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.