I am listening on changes to my images with Firebase to create a thumbnail. So on the serverside I download the image, resize the image and upload the thumbnail to my bucket:
defaultBucket.upload(tempFilePath)
Is there a way to get the download-URL for the file, I just uploaded?
I need something like getSignedUrl, just without expiration.
On the clientside I can use getDownloadURL, but this does not work on the server.