The tutorials for using the Blobstore all seem to demonstrate storing data by using a HTML POST form.
POST to the upload URL:
<form action="<%= blobstoreService.createUploadUrl("/upload") %>" method="post" enctype="multipart/form-data">
<input type="file" name="myFile">
<input type="submit" value="Submit">
</form>
I would like to upload the file using the server. (Java) Is there an API for this? or do I have to manually get the upload url, and POST server-side using HttpURLConnection?
URL url = new URL(blobstoreService.createUploadUrl("/upload"));
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
