Skip to content Skip to sidebar Skip to footer

Amazon Web Services - S3 'the Authorization Mechanism You Have Provided Is Not Supported' In Django

I am trying to configure my Django application to host image files within an AWS S3 bucket, but the images won't load. Instead, I receive the following error message: 'The authoriz

Solution 1:

I'm not sure why setting use-sigv4 = True in the config file did not work for you. You can set an environment variable instead:

# env.py

os.environ.setdefault('S3_USE_SIGV4', 'True')

Post a Comment for "Amazon Web Services - S3 'the Authorization Mechanism You Have Provided Is Not Supported' In Django"