我正在尝试将文件发布到API,我使用CarrierWave远程存储了该文件。
使用尚未使用CarrierWave上传的本地文件效果很好:
JSON.parse(RestClient.post("https://build.phonegap.com/api/v1/keys/android", {
keystore: File.new(Rails.root.join('file.keystore'))
}), symbolize_names: true)[:id]
=> 312199
以下是我尝试在本地临时存储文件的方法:
response = HTTParty.get model.file.url
f = Tempfile.new SecureRandom.hex
f.binmode
f.write response.body
f.flush
f.close
JSON.parse(RestClient.post("https://build.phonegap.com/api/v1/keys/android", {
keystore: File.new(f)
}), symbolize_names: true)[:id]
RestClient::BadRequest: 400 Bad Request
我检查了临时文件和file.keystore
具有相同的内容。
我做错了什么?
答案 0 :(得分:1)
如果您的api取决于文件名为file.keystore
,但您不关心保存文件,为什么不只是编写文件,发布文件,然后只删除文件?
response = HTTParty.get model.file.url
file = File.open('file.keystore', 'w') do |f|
f.binmode
f.write response.body
end
JSON.parse(RestClient.post("https://build.phonegap.com/api/v1/keys/android", {
keystore: 'file.keystore'
}), symbolize_names: true)[:id]
File.delete('file.keystore')