如何在不编码的情况下发送HTTP_REQUEST?

时间:2014-04-14 07:37:30

标签: ruby ruby-on-rails-3 http ruby-on-rails-3.2 typhoeus

我想发送请求而不编码params。因为我的API期望params为auth_token但在发送请求时它被编码为auth%5Ftoken。因为它的投掷错误。请帮我发送没有编码的请求。我正在使用健身房Typhoeus发送http请求。

我的代码:

 data = {"auth_token"=>"abcd" ,"employee" => {"method" => "add_employee"}}
 header =  { "Content-Type" => "application/json","Accept"=>"application/json"}
 request = Typhoeus::Request.post("www.example.com",:body=> data.to_json,:headers => header)

0 个答案:

没有答案