1

我正在尝试使用内容类型发布请求:application/x-www-form-urlencoded。但是当我使用 Charles(或 Fiddler)查看请求时,它会显示 application/json。

        HTTP.post(url, 
            {
                :headers => {"Content-Type" => "application/x-www-form-urlencoded"}
            }) do |response| 
            puts response
            puts response.body.to_str
        end
4

1 回答 1

0
BW::HTTP.post("http://foo.bar.com/", {payload: data, headers: {"Content-Type": "application/x-www-form-urlencoded"} }) do |response|
于 2014-05-22T12:31:21.360 回答