‘The request signature we calculated does not match the signature you provided’ in DigitalOcean Spaces
My django app saves user-uploaded files to my s3 bucket in DigitalOcean Spaces(using django-storages[s3], which is based on amazon-s3) and the path to the file is saved in my database. However when I click the url in located in the database it leads me to a page with this error:
The request signature we calculated does not match the signature you provided. Check your key and signing method.
How to read file from DigitalOcean Spaces using Django?
I have a Django app that uses DigitalOcean Spaces to store user-uploaded files. The app then transcribes those files and returns the text. However when I try to read the file using the url to the stored file it fails. Here is my views.py:
How to store my user-uploaded files on Digital Ocean Spaces using django-storages?
I am totally new to this. My Django app is run in Docker. My app allows users to upload files which are stored, followed by executing some functions on the file then generating a new file that the user can download. I’d like to store the initial user-uploaded file and the output-file my django code generates. Here is my code: