Add support for image transformations in bulk storage URL signing (getSignedUrls) #28893
Unanswered
vtsatskin
asked this question in
Feature Requests
Replies: 1 comment
|
Also quite interested in this |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
At the time of writing, Supabase storage supports creating temporary signed URLs with image transformations applied for single image objects. This is documented officially in the following places:
However, there is currently no way to sign a list of URLs with image transformation options. So:
createSignedUrlsupports image transformationscreateSignedUrlsdoes NOT support image transformationsBased on community feedback, I'm not the only one who has run into this use case not being supported. Please see https://github.com/supabase/supabase/issues/15343 dating back to June 2023.
It would be great to see this implemented. Based on my research, it should be a trivial feature request since the functionality already exists for
createSignedUrl. From my understanding, an update to the supabase/storage-js client library would need to be made and supabase/storage server would need to be made.For someone implementing, please take a look at my comment for a partial investigation into the scope of the changes needed: https://github.com/supabase/supabase/issues/15343#issuecomment-2310691270
All reactions