Reputation: 1665
With the old blobstore, blobstore_handlers.BlobstoreUploadHandler took care of long requests, for example the user could upload a 100mb file, taking 2 minutes
However I've not seen any example or document anywhere that explains a similar process using Google Cloud Storage, all examples provided just upload sample text files from appengine to gcs, there are no "user -> appengine -> gcs" examples, hope I didn't miss anything
Upvotes: 1
Views: 144
Reputation: 8199
You can upload a file to GCS using the blobstore API by specifying the argument gs_bucket_name
of the function create_upload_url
.
Upvotes: 2