Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 API 来获取缩略图。API 请求会自动下载图像。我想将该图像直接存储在我的 S3 存储桶中。为此使用像 Carrierwave 这样的东西似乎有点矫枉过正。如何进行 API 调用并将图像直接保存在 S3 中?
安装 AWS S3 gem
sudo gem i aws-s3
并按照此处的说明进行配置。
http://amazon.rubyforge.org/
然后
S3Object.store('image.jpg', open('fileName.jpg'), 'bucketName')