You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
So I was using the firebase package to download data from the firebase-storage (with flutter on web) and was trying to get two information: first the FullMetadata and second the download-URL.
var reference = firebaseb.app().storage().refFromURL("gs://blabla").child("myfilename")
I then use the reference above and .getMetadata() for the metadata and .getDownloadURL()for the download-URL. I then really quickly realized how slow my page was when loading my images. I then turned to the chrome-developer tool in the network tab and realized that both calls:
need 500ms to get done (is it because I have a free firebase account?)
they do the same exact call. (The download links is basically the child reference + ?alt=media and the the download token that is in the metadata.
So now my main question is: is it supposed to be like that? Is there a clean way to save half a second per image to get all this information other than creating my own url from the metadata? I saw that there was a getDownloadUrl function in the Metadata object but it's now deprecated.
Thank you for your help
The text was updated successfully, but these errors were encountered:
So I was using the firebase package to download data from the firebase-storage (with flutter on web) and was trying to get two information: first the FullMetadata and second the download-URL.
For both I am using the Firebase-Storage-Reference like this:
I then use the reference above and
.getMetadata()
for the metadata and.getDownloadURL()
for the download-URL. I then really quickly realized how slow my page was when loading my images. I then turned to the chrome-developer tool in the network tab and realized that both calls:?alt=media
and the the download token that is in the metadata.So now my main question is: is it supposed to be like that? Is there a clean way to save half a second per image to get all this information other than creating my own url from the metadata? I saw that there was a getDownloadUrl function in the Metadata object but it's now deprecated.
Thank you for your help
The text was updated successfully, but these errors were encountered: