我试图从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
感谢您的帮助!