Answers for "getDownload url in firebase"

-1

getDownload url in firebase

const storage = firebase.storage();

storage.ref('image.jpg').getDownloadURL()
  .then((url) => {
    // Do something with the URL ...
  })
Posted by: Guest on March-05-2021
-1

getDownload url in firebase

match /path/to/{file} {
  // Deny reads
  allow read: if false;

  // Or, allow reads by authenticated users
  allow read: if request.auth != null;
}
Posted by: Guest on March-05-2021

Code answers related to "getDownload url in firebase"

Browse Popular Code Answers by Language