[google-appengine] Re: image downloaded with images.get_serving_url() should default to a pre-defined name

2017-06-27 Thread 'George (Cloud Platform Support)' via Google App Engine
This is just a suggestion. If your purpose is uniquely to serve the URL, get_serving_url is recommendable. If you want to rather offer the file for download under a predetermined name, other options may come handy. -- You received this message because you are subscribed to the Google Groups "

[google-appengine] Re: image downloaded with images.get_serving_url() should default to a pre-defined name

2017-06-26 Thread NP
I thought get_serving_url was recommended because it wouldn't count against your bandwidth and usage. Are you saying if one is not resizing or offering the image at different resolutions, it is best to use the direct link to the cloud storage - the one of the form - storage.googleapis.com/** /[*

[google-appengine] Re: image downloaded with images.get_serving_url() should default to a pre-defined name

2017-06-23 Thread 'George (Cloud Platform Support)' via Google App Engine
It depends, whether you need the image to be served at different resolution, or not. If your purpose is to offer an image for download, you could rather organize a link to cloud storage. You can gather more detail from the "Request URIs" online document

[google-appengine] Re: image downloaded with images.get_serving_url() should default to a pre-defined name

2017-06-21 Thread NP
Hi, Thanks for your response. get_serving_url requires either a blobkey or an image name. I'm currently supplying a blob key. Are you saying, I should replace the blobkey with the image name? On Wednesday, June 21, 2017 at 10:13:39 AM UTC-7, George (Cloud Platform Support) wrote: > > What is

[google-appengine] Re: image downloaded with images.get_serving_url() should default to a pre-defined name

2017-06-21 Thread 'George (Cloud Platform Support)' via Google App Engine
What is the whole get_serving_url line you refer to? There is a filename parameter you may use with the get_serving_url command, as documented in the "google.appengine.api.images package" online document