Context I use ‘aws-sdk-s3’ ruby gem to upload files to DO spaces.
Issue When uploading file with multiple spaces in sequence in file name, error returned:
Aws::S3::Errors::SignatureDoesNotMatch (Aws::S3::Errors::SignatureDoesNotMatch)
How can I fix this? Is it DO spaces specific error?
How to reproduce?
require "aws-sdk-s3"
require "content_disposition"
resource = Aws::S3::Resource.new(
access_key_id: "...",
secret_access_key: "...",
endpoint: "...",
region: "...",
)
bucket = resource.bucket("...")
object = bucket.object("...")
filename = "multiple spaces.txt"
object.put(
body: "content",
content_disposition: ContentDisposition.inline(filename),
)
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi,
I tried to reproduce the error you reported but a file was successfully uploaded in my case. I also did another test using s3cmd package on CentOS 7. It worked perfectly well. It is not DO Spaces specific error then.
Here is the configuration I used for reproducing the error.
Droplet - standard Ubuntu image, fully upgraded
My script was just a copy of yours: