我想通过 http 请求作为 api cal 发送音频文件,而不是通过使用 net/http 的表单。我不想使用任何其他宝石。请让我知道如何实现。下面是我的红宝石脚本。
require 'net/http'
require "uri"
data = File.read('/root/Desktop/amc.amr')
url = URI.parse('http://localhost:3000/api/applications')
http = Net::HTTP.new(url.host, url.port)
response, body = http.post(url.path, data, {'Content-type'=>'audio/amr;
charset=utf-8'})
puts response