具有R中特定标头的httr库中的POST方法

时间:2017-03-15 07:25:51

标签: json r http

我希望收到一个 json字符串作为REST API URL的响应。 它有 标题为Content-Type=application/json 它应该有一个json格式的主体 EG-的 {"string1":"string2","string3":"string4"}

这些是我在使用POSTMAN时输入的详细信息。上述要求的正确语法是什么。

我正在尝试以下语法,但它总是会抛出错误:

POST(url = login,add_headers('Content-Type'='application/json'),body = c("string1"="string2","string3"="string4"),encode = c("json"),verbose())

1 个答案:

答案 0 :(得分:0)

尝试使用此

POST(url = login,add_headers('Content-Type'='application/json'),body = list(string1="string2",string3="string4"),encode = "json",verbose())