I'm trying to call images.get_serving_url() on a blob I just created using 
the (experimental) blobstore write features. Its raising an anonymous error, 
and was 10 hours ago too. The underlying API error is 
ImagesServiceError.UNSPECIFIED_ERROR. Everything works great on the local 
dev server.

Here's what I'm doing:

file_name = files.blobstore.create(mime_type="images/jpeg", 
                                  
 _blobinfo_uploaded_filename=local_filename)
        
with files.open(file_name, 'a') as f:
  f.write(my_image_blob)
files.finalize(file_name)
blob_key = files.blobstore.get_blob_key(file_name)
serving_url = my_get_serving_url(blob_key) # ERROR


-Seth 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to