I made use of Firebase Storage to save images, now I want to get them for users to see, is there any way to do this without downloading the image?
I made use of Firebase Storage to save images, now I want to get them for users to see, is there any way to do this without downloading the image?
I use the following form:
refEst = storageRef.child('estabelecimentos').child(id + '.png');
refEst.getDownloadURL().then(function (url) {
return url;
}).catch(function (error) {
console.log("erro");
});