Report this

What is the reason for this report?

Receiving Aws::S3::Errors::SignatureDoesNotMatch using Shrine lib

Posted on July 3, 2018

I’m trying to upload an attachment to Spaces by using Shrine lib from Ruby. here is my config:

s3_options = {
  credentials: Aws::Credentials.new("key",'secret'),
  endpoint: 'https://nyc3.digitaloceanspaces.com',
  region: "*",
  bucket: "*"
}

Shrine.storages = {
  cache: Shrine::Storage::S3.new(prefix: 'cache', upload_options: {acl: 'public-read'}, **s3_options),
  store: Shrine::Storage::S3.new(prefix: 'store', upload_options: {acl: 'public-read'}, **s3_options)
}

I’m trying to run following code:

attachment.attachment = File.open("data_test.jpg")

and receiving

Aws::S3::Errors::SignatureDoesNotMatch

what is necessary steps I should do to debug this issue, or probably there is knowledge base I haven’t located?

Thank you for any help!



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.

Could the issue be that in the fact that you’re not opening the file in binary mode? That can cause issues sometimes, try opening it binary mode:

attachment.attachment = File.open("data_test.jpg", "rb")

hello @jankomarohnic - I have no idea what it was, I’ve regenerated access keys and it started working

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.