Recover Firebase Storage image without downloading

0

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?

    
asked by anonymous 30.01.2017 / 21:06

1 answer

0

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");
            });
    
06.09.2017 / 03:43