使用rest_client从rails发送post请求.400 Bad request

时间:2016-02-09 02:13:05

标签: ruby-on-rails ruby rest-client net-http

基本上,我想将发布请求发送给faye服务器。当我使用curl时,它可以工作,

curl http://localhost:9292/faye -d 'message={"channel":"/messages/new", "data":"hello"}'

我可以在客户端看到你好。

但是当我使用http_party或rest_client或net http时,它会说错误的请求。

def send

     params = {'channel' => 'faye/messages/new','data' => 'hello', "Content-type" => "application/json"}
     x = Net::HTTP::Post.new (URI.parse('http://localhost:9292/faye'))
     puts x.body

    # I tried it with http_ party too and rest_cliet.
    #  data = {
    #    channel: "messages/new",
    #    data: "hello"
    #  }
    #  RestClient.post 'http://localhost:9292/faye', :channel => 'messages/new', :data=> "hello"
    # response = RestClient::Request.execute(method: :post, url: '127.0.0.1:9292/faye',messages: {"channel" => "messages/new", "data"=>"hello"})
   end
end

我尝试过来自Submitting POST data from the controller in rails to another website

的解决方案

Ruby on Rails HTTPS Post Bad Request但它仍然说错误请求。

我不知道我在哪里弄错了。我一直在拉着我的头发 有些日子。 我的ruby版本是2.2.4 rails -v => 4.2.5

修改:在接受回答的帮助下,我更新了我的方法。它现在正在工作。

require 'rest_client'
   require 'json'
   def send
     RestClient.post 'http://localhost:9292/faye', {message: {"channel" => "/messages/new", "data"=>"hello"}.to_json}, {:content_type => :json, :accept => :json}
   end

1 个答案:

答案 0 :(得分:3)

在你的curl示例中,您发送的是json数据,但在使用Ruby时却没有。试试这个

require "json"
RestClient.post("http://localhost:9292/faye", {
  message: {"channel" => "messages/new", "data"=>"hello"}.to_json
})