根据相关的github问题,将其添加到配置中:
[s3]calling_format = boto.s3.connection.OrdinaryCallingFormat
或者,
calling_format在实例化时指定
S3Connection:
from boto.s3.connection import OrdinaryCallingFormatconn = S3Connection(access_key, secret_key, calling_format=OrdinaryCallingFormat())
该代码在本地为您工作,而在heroku上不起作用,这很可能是因为所使用的python版本不同。我怀疑您
2.7.9在heroku上使用了运行时,该运行时已启用了stdlib
http客户端的证书检查。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)