1

我正在尝试使用 R 调用 Amplitude Export API(此处链接:https ://developers.amplitude.com/docs/export-api )。

下面是解释,但我真的不明白如何使用像 GET 或 curl 函数这样的函数来应用以下内容。

curl -u API_Key:Secret_Key 'https://amplitude.com/api/2/export?start=20150201T5&end=20150203T20' >> yourfilename.zip
4

1 回答 1

1

不是真正的 R 专家,但这样的东西应该可以工作

require(httr)

params = list(
  `start` = '20150201T5',
  `end` = '20150203T20'
)

res <- httr::GET(url = 'https://amplitude.com/api/2/export', query = params, httr::authenticate('API_Key', 'Secret_Key'))
于 2021-06-16T20:19:57.350 回答