If i have a list a product of things with image url that was store in storage i have to find a way to call ``await supabase.storage.from('image').download(path)`` every time and create a ``URL.createObjectURL(data)`` or their is a way to upload the image and when it fetch and pass to `` it read like other api do.
n
Needle
07/26/2022, 12:48 PM
Hello @React noob!
This thread has been automatically created from your message in #843999948717555735 a few seconds ago.
We have already mentioned the @User so that they can see your message and help you as soon as possible!
Want to unsubscribe from this thread?
Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates.
Want to change the title?
Use the ``/title`` command!
We have solved your problem?
Click the button below to archive it.
g
garyaustin
07/26/2022, 1:10 PM
Not sure exactly what you are asking but there are calls to get a public URL for a public bucket or to get a signed URL (time expiring token) for private buckets.
r
React noob
07/26/2022, 2:09 PM
I want to know if we can get a readable url directly to avoid going through supabase.storage.from('image).whatever you call to get the image url. Because I have no idea how I can pass each url into that function before it goes into the image tag. (Because I'm trying to render a list of items)