如何在R中将Content-Type更改为application / x-www-form-urlencoded?

时间:2018-02-20 10:55:01

标签: r post rstudio httr

我试图从httr包中发帖。

library(httr)
b<-"http://httpbin.org/post"
POST(b, body = list(client_id = "",
                    client_secret="",
                    grant_type="",
                    username="",
                    password=""), encode = "form",config=list(add_headers("Content-Type" = "application/x-www-form-urlencoded",
                                                                          "Accept" = "application/x-www-form-urlencoded")))

此代码的结果:

Response [http://httpbin.org/post]
  Date: 2018-02-20 10:43
  Status: 200
  Content-Type: application/json
  Size: 590 B

并且Content-Type在默认情况下没有变化,与代码中没有config的代码类似。 另一种encode没有改变结果。

我做错了什么? 以及如何使结果成为现实

  Response [http://httpbin.org/post]
  Date: 2018-02-20 10:43
  Status: 200
  Content-Type: application/x-www-form-urlencoded
  Size: 590 B

感谢您的帮助!

0 个答案:

没有答案