将文件上载到S3预签名URL

时间:2014-05-03 11:43:51

标签: ruby amazon-web-services amazon-s3 rest-client

我尝试将本地文件上传到S3预签名网址。它应该是非常直接的,但看起来我错过了一些东西。

http://docs.aws.amazon.com/AmazonS3/latest/dev/PresignedUrlUploadObject.html

示例:

ENV['RESTCLIENT_LOG'] = "stdout"
require 'aws-sdk'
require 'rest_client'

s3_object_key = "folder-name/file.zip"

AWS.config(access_key_id: 'xxx', secret_access_key: 'xx')
s3 = AWS::S3.new
bucket = s3.buckets['my-bucket-name']
s3_object = bucket.objects[s3_object_key]

upload_url = s3_object.url_for(:put, expires: 100000).to_s

RestClient.put(upload_url, file: File.new("local-file.zip"))

记录:

RestClient.put "https://s3.amazonaws.com/my-bucket-name/folder-name/file.zip?AWSAccessKeyId=xxx&Expires=xxx&Signature=xxx", 246572 byte(s) length, "Accept"=>"*/*; q=0.5, application/xml", "Accept-Encoding"=>"gzip, deflate", "Content-Length"=>"246572", "Content-Type"=>"multipart/form-data; boundary=183013"

响应:

/Users/dev/.rbenv/versions/2.1.1/lib/ruby/2.1.0/openssl/buffering.rb:326:in `syswrite': Broken pipe (Errno::EPIPE)
    from /Users/dev/.rbenv/versions/2.1.1/lib/ruby/2.1.0/openssl/buffering.rb:326:in `do_write'
    from /Users/dev/.rbenv/versions/2.1.1/lib/ruby/2.1.0/openssl/buffering.rb:344:in `write'

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

使用PresignedPost

怎么样?
form = bucket.presigned_post(:key => "photos/${filename}")
form.url.to_s        # => "https://mybucket.s3.amazonaws.com/"
form.fields          # => { "AWSAccessKeyId" => "...", ... }
form.url             # your signed url

答案 1 :(得分:0)

您不能简单PUT S3上的文件。使用write API执行此操作:

s3_object.write(:file => "local-file.zip")