Clarified URL Signed and Object Loading
I am a little confused how to create a signed url so that a user can upload a file or set of files to gcs. I have successfully created a signed url to access a private object, but now I would like to try the same for multipart upload. It looks like the POST request cannot be signed, so I tried the PUT request, but it didn't work. I'm not sure if I need to use a different endpoint. Also is it possible to create a signed url without specifying the object name first? By the way, I am using postman to check the download process and go to sign the url.
+3
source to share
1 answer
You can use resumable downloads [1] instead of multi-page downloads and it should work for you.
[1] https://cloud.google.com/storage/docs/json_api/v1/how-tos/upload#resumable
+1
source to share