我正在使用以下代码通过api json响应从电子商务网站中获取数据。
url <- "https://example.com"
httpResponse <- GET(url, add_headers("n-context" = "large"), accept_json())
res <-RJSONIO::fromJSON(content(httpResponse, "text"))
自最近两个月以来,这一直很好,突然出现以下错误。
Error in content(httpResponse, "text") : unused argument ("text")
我尝试将参数更改为“原始”,但没有锻炼。
还有其他使用标头调用json响应的方法。