I use GAE Java. I was looking for ways to upload images that produce actual URL not storing them inside Datastore.
My research led me to using Blobstore API. However the API's
home page says uploading right from Java is deprecated.
My images are base64 encoded from client browser and turned into byte array in servlet.
I would like to store this into Blobstore API and obtain an URL. Is there anyway I can achieve this properly?