We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/transloadit/uppy/tree/main/packages/%40uppy/companion
Very simple to say one phrase, this is reproduced by using AWS-S3-Multipart with companionUrl and getTemporarySecurityCredentials :true options.
AWS-S3-Multipart
companionUrl
getTemporarySecurityCredentials :true
Runnable example will be produced by @uppy/companion server with making setup s3-multipart, S3 CORS-policy and sts federation permission.
Note that default key implementation makes key including filename so that special chars in name of uploading file causes error.
https://github.com/transloadit/uppy/blob/main/packages/%40uppy/companion/src/server/helpers/utils.js#L149 ${crypto.randomUUID()}-${filename}
${crypto.randomUUID()}-${filename}
After above setup, try upload file with special chars in file name. (Example: !'()*.txt)
!'()*.txt
The text was updated successfully, but these errors were encountered:
I will send PR to fix this and may include info what is a difference between uppy's implementation and AWS SDK's one.
Sorry, something went wrong.
@uppy/aws-s3-multipart: Fix escaping issue with client signed request. …
0a61ffe
…fixes transloadit#5005
I'm not sure RFC 3986 requires escaping those characters, but I suppose that hardly matters if AWS requires it.
Successfully merging a pull request may close this issue.
Initial checklist
Link to runnable example
https://github.com/transloadit/uppy/tree/main/packages/%40uppy/companion
Steps to reproduce
Very simple to say one phrase, this is reproduced by using
AWS-S3-Multipart
withcompanionUrl
andgetTemporarySecurityCredentials :true
options.Runnable example will be produced by @uppy/companion server with making setup s3-multipart, S3 CORS-policy and sts federation permission.
Note that default key implementation makes key including filename so that special chars in name of uploading file causes error.
After above setup, try upload file with special chars in file name. (Example:
!'()*.txt
)Expected behavior
Actual behavior
The text was updated successfully, but these errors were encountered: