I have a datastore storing images as a blob property. I want to use get_serving_url to serve images on the fly.
def urlserve(self):
return images.get_serving_url(str(self.key.urlsafe()),350)
It gives me a URL like
http://localhost:8097/_ah/img/ahBkZXZ-cmFqaW5pbmF0aW9uciYLEglpbWFnZWxpc3QiDWRlZmF1bHRfaW1hZ2UMCxIDSW1nGKkHDA=s350
But I can't able to serve using that page.
So I could only use blobstore image to do this, if so do i need to create a blobstore for my image and store the blobreferenceproperty in my datastore? Or is there better way?