我正在将我的Django网站移至Heroku。但我无法弄清楚如何将Heroku与亚马逊s3桶一起使用。以前我曾经在项目中保存所有上传的文件,但我不能使用Heroku。
我一直在关注Heroku上的文档:https://devcenter.heroku.com/articles/s3和https://devcenter.heroku.com/articles/s3-upload-python 水桶位于法兰克福。
上传文件时出现以下错误:
<Error>
<Code>InvalidArgument</Code>
<Message>a non-empty Access Key (AKID) must be provided in the credential.</Message>
<ArgumentName>X-Amz-Credential</ArgumentName>
<ArgumentValue>/20180502/eu-central-1/s3/aws4_request</ArgumentValue>
…
</Error>
我在Heroku中指定了这样的键:“heroku config:set AWS_ACCESS_KEY_ID = xxx AWS_SECRET_ACCESS_KEY = yyy”
您可以转到https://eventcollective.herokuapp.com/accounts/account/并尝试上传图片。
来自views.py的
def sign_s3(request):
S3_BUCKET = os.environ.get('S3_BUCKET')
print(S3_BUCKET)
file_name = request.GET.get('file_name')
file_type = request.GET.get('file_type')
s3 = boto3.client('s3', region_name='eu-central-1')
presigned_post = s3.generate_presigned_post(
Bucket=S3_BUCKET,
Key=file_name,
Fields={"acl": "public-read", "Content-Type": file_type},
Conditions=[
{"acl": "public-read"},
{"Content-Type": file_type}
],
ExpiresIn=3600
)
return HttpResponse(json.dumps({
'data': presigned_post,
'url': 'https://%s.s3.amazonaws.com/%s' % (S3_BUCKET, file_name)
}))
您对如何解决此问题有任何想法吗?
答案 0 :(得分:0)
在创建客户端对象时,似乎必须添加“aws_access_key_id”和“aws_secret_access_key”。
s3 = boto3.client(
's3',
region_name='eu-central-1',
aws_access_key_id='KEY',
aws_secret_access_key='KEY',
)