如何使用fromJSON
发送标题信息?
例如,这就是我从服务器请求json数据的方式,但是服务器需要我身边的一些身份验证信息。
public_key <- 'VzUZFW1cQzP08ovr5auZbXQduzE';
data <- fromJSON(paste('http://127.0.0.1:3000', "/output/data?public_key=", public_key, sep=""),flatten=TRUE)
是否可以使用fromJSON
或其他套餐?
答案 0 :(得分:4)
如果您想在请求中包含额外的http标头, 你应该使用不同的方法来获取网址内容, 并在响应中使用fromJSON。
使用Bing Web Search API上的httr包的示例:
library(httr)
library(jsonlite)
QUERY = "your search query here..."
API_KEY = "your api key here...."
url = paste0("https://api.cognitive.microsoft.com/bing/v5.0/search?",
"mkt=en-US&setLang=en-US&responseFilter=Webpages&textDecorations=false&textFormat=Raw&q=",
QUERY)
httpResponse <- GET(url, add_headers("Ocp-Apim-Subscription-Key" = API_KEY), accept_json())
results = fromJSON(content(httpResponse, "text"))