hello team,
I have a Supabase private bucket, I uploaded the images/videos using "Upload media to Supabase"
When I upload it, the URL does not have "/public/" in the path.
https://12234567890.supabase.co/storage/v1/object/private_groups/21/media/1738639308572157.jpg
but the "uploaded File Url" comes back like
https://12234567890.supabase.co/storage/v1/object/public/private_groups/21/media/1738639308572157.jpg
so I used a custom function to replace /public/ with / - works fine
now the main problem is the image/media display widgets call the URL {GET} without auth headers, by default it only assumes the img is a public URL.
I see others using signed URL, but I want permanent access to authenticated users, not time limit.
can I, may be use a custom action to call the image URL with auth headers? but how to display the image?
YES- when I try the private URL in POSTMAN with headers, it works, I have RLS policies on storage.objects