[Django]-Boto.exception.S3ResponseError: S3ResponseError: 400 Bad Request

2👍

Try by providing the host name corresponding to the S3 bucket region.
For example:

from boto.s3.connection import S3Connection
conn = S3Connection(aws_access_key, aws_secret_key, host='s3.us-east- 2.amazonaws.com')
👤Subin

Leave a comment