I am currently ujsing Clerk for auth and identity management. I've specified certain fields in my session claim and connected it to Supabase.
This should allow accessing Clerk claims from supabase in order to set my RLS policies. However, if the process in the backend is:
- Receive bearer token in the header request
- Validate it using the Clerk-python sdk
- Initialize a supabase client (supabase python-sdk) with the bearer token, and automatically using the client will apply RLS policies.
It seems I'm having some issues. has anyone faced this challenge and could help me out?