Using Google Cloud Storage, I'd like to pass a client the necessary information to do a resumable upload. Is this possible?
相关问题
- Cannot upload large file to Google Cloud Storage
- Google Cloud Storage requests are slow using Paper
- Mounting a gcePersistentDisk kubernetes volume is
- compute engine use gsutil to download tgz file has
- Downloading files from Google Storage using Spark
相关文章
- Archive option greyed out in xcode 4.5.2
- Safari xhr drag'n'drop file upload seems t
- React Native Uploading File in parts using XMLHttp
- Google Storage access based on IP Address
- gsutil / gcloud storage file listing sorted date d
- Upload image to firebase using react-native-image-
- kohana 3 uploading image without using any modules
- Automate ftp upload to ip
Yes, this is possible.
With a server that has authenticated to the Cloud Storage service and a client it wishes to grant access to, the typical signed URL upload workflow looks like this:
URL
using the method described hereURL
The resumable workflow looks like this:
URL
using the method described hereURL
and theUpload ID
to the clientURL
andUpload ID
I just found this note on the docs here:
So basically you don't need a signed url. The upload ID would be enough. The procedure would be as follows: