“getDownload URL в Firebase” Ответ

getDownload URL в Firebase

const storage = firebase.storage();

storage.ref('image.jpg').getDownloadURL()
  .then((url) => {
    // Do something with the URL ...
  })
Nasty Newt

getDownload URL в Firebase

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

  // Or, allow reads by authenticated users
  allow read: if request.auth != null;
}
Nasty Newt

Ответы похожие на “getDownload URL в Firebase”

Вопросы похожие на “getDownload URL в Firebase”

Больше похожих ответов на “getDownload URL в Firebase” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования