how to upload file in firebase storage and firestore and get the download url code example
Example 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;
}
Example 2: getDownload url in firebase
const storage = firebase.storage();
storage.ref('image.jpg').getDownloadURL()
.then((url) => {
// Do something with the URL ...
})