4

It is possible to get a serving url like http://lh3.googleusercontent.com/-dB80E6geqWFVU41ZmWL1iGC0BkCDcXAGojwaAgMHG-wMe_xCpISffiaNy00Y6ATJ2J9_W_I8rMgwQYWQQyGcFuffw=s1024

It's done by using google app engine:

images.get_serving_url(blobkey, secure_url=False)

I don't want to use Google App Engine, just Firebase or the UI.

Can this be accomplished?

Thanks!

I got the info/idea from here:

http://www.photo-mark.com/notes/photo-site-app-engine/ List of all the App Engine images service get_serving_url() URI options

Community
  • 1
  • 1
Tixiv
  • 170
  • 1
  • 7

1 Answers1

2

With Firebase Storage that is known as a download URL. It is a public (but unguessable) URL for the file.

See the documentation on how to get download URLs for iOS, Web and Android.

Firebase Storage doesn't currently have any way to automatically resize/transcode images (or transform other content) upon request.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807