如何用 R 调用 Amplitude Export API

How to call Amplitude Export API with R

我正在尝试使用 R.

调用振幅导出 API(link 此处: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

不是真正的 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'))