Is there a simple way to get the download URL of a file uploaded to Firebase?
(I\'ve tried playing around with the snapshot returned by my upload function and couldn\'
To get the Url created by default from the snapshot you can use downloadURL, meaning snapshot.downloadURL.
downloadURL
snapshot.downloadURL
Remember to always keep tracking the progress of the upload by using .on('state_changed'), Documentation here.
.on('state_changed')