By mehal
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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.