I\'m working on a simple multimedia messaging app for Android, and I was trying to use Google AppEngine\'s BlobStore as my cloud storage for the various image, video, and au
You could go with something like this:
1. On Google App Engine, create a Web Handler that calling blobstore.create_upload_url() returns an action_POST_URL
2. On Android, post the image to the action_POST_URL
using HttpClient and MultipartEntity.
for Java
BlobstoreService blobstoreService =
BlobstoreServiceFactory.getBlobstoreService();
String action_POST_URL= blobstoreService.createUploadUrl(redirect_URL);