我正在尝试将数据上传到amazon s3存储桶。 我为此目的使用aws-s3 gem。 我提供了正确的访问密钥和安全密钥,但仍然无法执行S3Object.store/Bucket调用,但建立了连接。它们返回错误“AWS :: S3 :: SignatureDoesNotMatch:我们计算的请求签名与您提供的签名不匹配。请检查您的密钥和签名方法。”
有趣的是,我正在使用paperclip插件运行另一个rails应用程序将图像上传到S3,这就像一个魅力!使用相同的访问密钥和安全密钥。
我尝试引用一些提及相同问题的链接,但没有运气。 [https://forums.aws.amazon.com/thread.jspa?threadID=16020&tstart=0]
任何指针/帮助/建议都会很棒。 :)
答案 0 :(得分:0)
我刚遇到这个问题,因为我没有在请求中提供正确的区域。
我正在按照here使用fog
和Carrierwave
,并且我必须在config / initializer中为Carrierwave
配置该区域
CarrierWave.configure do |config|
config.fog_credentials = {
provider: 'AWS', # required
aws_access_key_id: '[redacted]', # required unless using use_iam_profile
aws_secret_access_key: '[redacted]', # required unless using use_iam_profile
# use_iam_profile: false, # optional, defaults to false
region: 'eu-central-1', # optional, defaults to 'us-east-1'
# host: 's3.example.com', # optional, defaults to nil
# endpoint: 'https://s3.example.com:8080' # optional, defaults to nil
}
config.fog_directory = 'xxx' # required
# config.fog_public = false # optional, defaults to true
# config.fog_attributes = { cache_control: "public, max-age=#{365.days.to_i}" } # optional, defaults to {}
end
有趣的是,雾被亚马逊重定向到具有正确区域的正确端点,但是,重定向的请求在身份验证上失败了,在这种情况下可能是雾的问题。雾确实在日志中给出了一个很好的警告
[fog][WARNING] fog: followed redirect to calm4-files.s3.amazonaws.com, connecting to the matching region will be more performant
但为了更加准确,他们应该说not only more performant, but it will actually work as well