Google Reports API-日历审核活动事件

时间:2018-09-26 03:12:33

标签: java google-api google-admin-sdk google-api-java-client gsuite

我正在尝试使用此API(https://developers.google.com/admin-sdk/reports/v1/reference/activities/list)列出G Suite用户的日历活动,但出现此错误:

  

线程“ main”中的异常java.lang.IllegalArgumentException:参数applicationName必须符合模式(admin)|(docs)|(login)

我的代码是:

Reports reports = new Reports.Builder(httpTransport, jsonFactory, credencial).build();

Activities activities = reports.activities()
                        .list("all", "calendar")
                        .setPageToken(nextPageToken)
                        .setMaxResults(10)
                        .execute();

当我使用登录选项时,它对我有用

有人可以帮助我吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

针对Java的报告API快速入门应该会有所帮助。 Reports API Java。您必须确保.list(“ all”,***)的第二个参数符合您使用的版本。例 .list(“ all”,“ docs”)将从相对域中的所有用户返回docs应用程序的活动列表。有道理吗?