Authenticate Custom Endpoint
I'm having great success using the Supabase Postgrest integration for most of my DB interaction. I've run into an edge case where I need to run some complex data manipulation, and will do so with with Python on cloud run. Question is what is the safest way to make a custom authenticated endpoint?
Will the JWT work on another subdomain?
ie: user is logged in at app.domain.com -- custom endpoint that will need to be authenticated hopefully with the same JWT session is at api.domain.com
Will the JWT work on another subdomain?
ie: user is logged in at app.domain.com -- custom endpoint that will need to be authenticated hopefully with the same JWT session is at api.domain.com