Kaan Soral
Kaan Soral

Reputation: 1665

How does a user of an AppEngine app upload a large file if the app is using GCS?

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

Answers (1)

Sebastian Kreft
Sebastian Kreft

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

Related Questions