需要通过 R 访问 Google 自定义搜索 api

Need to access Google Custom search api through R

如何使用 R 进行 Google 自定义搜索?我有自定义搜索引擎 ID 和 api 键。我目前正在尝试这样做:

getURL("https://www.googleapis.com/customsearch/v1?key=API_KEY&cx=ENGINE_ID&q=searchterm")

我收到以下错误:

Error in function (type, msg, asError = TRUE) : SSL certificate problem: unable to get local issuer certificate

虽然我在浏览器中执行获取请求时能够在 json 中获得结果。有什么线索吗?

getURL

中设置ssl.verifypeer=TRUE
getURL("https://www.googleapis.com/customsearch/v1?key=API_KEY&cx=ENGINE_ID&q=searchterm", ssl.verifypeer=TRUE)

httr 包成功了!!

library(httr)
query="https://www.googleapis.com/customsearch/v1?key=API_KEY&cx=ENGINE_ID&q=SEARCH_TERM"
content(GET(query))