我想发送请求而不编码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)