我需要将
JSON中的数据发送到在同一台计算机上运行的另一个应用程序.
我发出这样的请求(rails 3.2.13)
我发出这样的请求(rails 3.2.13)
data = { //some data hash } url = URI.parse('http://localhost:6379/api/plans') resp,data = Net::HTTP.post_form(url,data.to_JSON ) p resp p data { resp: resp,data: data.to_JSON }
但是我得到了Net :: HTTPBadResponse(错误的状态行:“-ERR unknown command’POST’”):
我如何解决这个问题?
更新1
将我的代码更新为@ Raja-d建议
url = URI.parse('http://localhost:6379/v1/sessions') http = Net::HTTP.new(url.host,url.port) http.use_ssl = true resp,data) p resp p data
解决方法
我不知道你的问题是什么,但是这样的东西呢
http = Net::HTTP.new(uri.host,uri.port) http.use_ssl = true request = Net::HTTP::Post.new(uri.path,{'Content-Type' => 'application/json'}) request.body = data.to_json response = http.request(request)