我正在尝试使用GSuite Admin SDK创建GSuite集成,该SDK将获取用户列表和上次活动的日期时间。我可以获取上次登录时间,但我找不到找到使用POP或IMAP电子邮件客户端的用户的上一次电子邮件活动的方法。
我尝试获取的数据可在管理控制台中找到:
但有没有办法使用Gsuite Admin SDK获取它?
答案 0 :(得分:0)
我找到了一个为用户提供电子邮件活动的解决方案,但API参考中的示例并不是那么简单,而是分布在多个页面上。我最终使用了GSuite Reports API中的用户使用情况报告(正如对原始问题的评论中所建议的那样):https://developers.google.com/admin-sdk/reports/v1/guides/manage-usage-users
示例电话:
GET https://www.googleapis.com/admin/reports/v1/usage/users/all/dates/2018-05-21?parameters=classroom:last_interaction_time,accounts:last_login_time,accounts:last_sso_time,gmail:last_access_time,gmail:last_imap_time,gmail:last_interaction_time,gmail:last_pop_time,gmail:last_webmail_time
通过这种方式,我不仅可以获得电子邮件活动,还可以获得课堂上次交互时间和GSuite上次登录时间以及上次SSO时间。
示例用户响应:
"entity": {
"type": "USER",
"customerId": "customerId",
"userEmail": "sample@email.com",
"profileId": "profileId"
},
"parameters": [
{
"name": "classroom:last_interaction_time",
"datetimeValue": "1970-01-01T00:00:00.000Z"
},
{
"name": "accounts:last_login_time",
"datetimeValue": "2018-05-18T14:46:11.000Z"
},
{
"name": "accounts:last_sso_time",
"datetimeValue": "1970-01-01T00:00:00.000Z"
},
{
"name": "gmail:last_access_time",
"datetimeValue": "2018-05-18T08:43:15.000Z"
},
{
"name": "gmail:last_imap_time",
"datetimeValue": "1970-01-01T00:00:00.000Z"
},
{
"name": "gmail:last_interaction_time",
"datetimeValue": "2018-04-23T07:08:40.000Z"
},
{
"name": "gmail:last_pop_time",
"datetimeValue": "1970-01-01T00:00:00.000Z"
},
{
"name": "gmail:last_webmail_time",
"datetimeValue": "2018-04-23T07:08:44.000Z"
}
]