Replies: 1 comment 3 replies
-
CreateMPU requires auth with aws and there is no workaround to call it if you dont have auth. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to achieve multipart upload. I have chunks coming in and I want to upload each chunk separately for a large file. I do not have credentials, so I will be using presigned URL for this, the only input to a program is bucket name and object name. I was looking into multi-part upload approach. Here is what I have:
Above code fails at line:
with error message: "Failed to initiate multipart upload: Anonymous users cannot initiate multipart uploads. Please authenticate"
It wont fail if I create client with authentication params. So seems like the approach I am trying with multipart upload will not work. How do I solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions