使用 Faraday Ruby gem 下载镜像并写入磁盘
当使用 Faraday gem 访问如下图像的 URL 时:
http_conn = Faraday.new do |builder|
builder.adapter Faraday.default_adapter
end
response = http_conn.get 'http://example.tld/image.png'
How can you write the image file from法拉第对磁盘的响应?
调试 response.body
属性显示它是二进制数据。
非常感谢任何帮助。
When using the Faraday gem to hit a URL for an image like this:
http_conn = Faraday.new do |builder|
builder.adapter Faraday.default_adapter
end
response = http_conn.get 'http://example.tld/image.png'
How can you write the image file from the Faraday response to disk?
Debugging the response.body
attribute shows it is binary data.
Any help greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不像其他文件一样编写
response.body
呢?Why not just write the
response.body
like any other file?