上传文件到S3 presigned网址 [英] Uploading a file to a S3 Presigned URL

查看:529
本文介绍了上传文件到S3 presigned网址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想上传本地文件到S3 presigned URL。它应该是真的直线前进,但看起来像我想的东西。

I'm trying to upload a local file to a S3 presigned URL. It should be really straight forward, but looks like I'm missing something.

http://docs.aws.amazon.com /AmazonS3/latest/dev/$p$psignedUrlUploadObject.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'

任何帮助将是非常美联社preciated。

Any help would be much appreciated.

推荐答案

有关使用的 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

这篇关于上传文件到S3 presigned网址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆