JessMcintosh
JessMcintosh

Reputation: 460

GAE blobstore - programmatically upload files

I have created an application that will upload the users images to the blobstore, then perform some transformations on them. I need to save this new image to the blobstore. So far, I have resorted to using datastore blob types, however these have a maximum file size of 1MB.

Is there a way to programatically upload files to the blobstore without having to use a form and a POST event handler?

Upvotes: 2

Views: 164

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599460

There is, but it is deprecated.

Instead, as that doc says, you should write to Google Cloud Storage - you can still use the Blobstore to serve the files from there.

Upvotes: 1

Related Questions