Google 加 public 使用 R 关键字搜索活动

Google Plus public search activities with keyword using R

我正在尝试从 Google Plus API 获取数据,但我只知道如何搜索 user_id

以下是我如何使用 RCurl 库获取 JSON:

data <- getURL(paste0("https://www.googleapis.com/plus/v1/people/",
 user_id,"/activities/public?maxResults=100&key=", api_key),
 ssl.verifypeer = FALSE)

我试过像 google 上的文档那样格式化 URL 像这样:

data <- getURL(paste0("https://www.googleapis.com/plus/v1/activities/",
    keyword,"?key=",api_key),ssl.verifypeer = FALSE)

但是没用。

是否可以使用 R 中的关键字进行搜索?根据此 link

,R 不在 API 支持的编程语言中

我想出了如何让它发挥作用。 GET 请求的格式应为:

data <- getURL(paste0("https://www.googleapis.com/plus/v1/activities?key=",api_key,"&query=",search_string),ssl.verifypeer = FALSE)