登入活動報表會傳回帳戶所有使用者的登入活動資訊。每份報表都會使用基本報表端點要求,並附上報表專屬參數,例如使用者的電子郵件地址。每份報表的時間範圍上限為過去 180 天。
您只能根據《客戶協議》的規定,將登入活動報表用於合法用途。
擷取網域的 Google Workspace 登入事件
如要擷取所有網域服務的所有登入記錄,請使用下列 GET
HTTP 要求,並附上「授權文件」中所述的授權權杖。如要進一步瞭解要求查詢字串和回應屬性,請參閱 API 參考資料。為了方便閱讀,以下範例會以換行格式呈現:
GET https://admin.googleapis.com/admin/reports/v1/activity/users/all /applications/login?endTime=end date&startTime=start date &maxResults=maximum number of events returned on a response page
以下範例會取得過去 180 天內所有帳戶登入事件的報表。maxResults
查詢參數會讓這份報表每頁傳回 25 個結果。
GET https://admin.googleapis.com/admin/reports/v1/activity/users/all/applications/login?maxResults=25
以下範例會取得過去 180 天內客戶的所有登入事件報表。customerId
會指定要為哪位客戶擷取報表。
GET https://admin.googleapis.com/admin/reports/v1/activity/users/all/applications/login?customerId=C03az79cb
依事件名稱擷取 Google Workspace 登入事件
在某些情況下,您可能會想要擷取特定事件,例如可疑的成功登入。如要這麼做,請使用以下格式的 GET
HTTP 要求:
GET https://admin.googleapis.com/admin/reports/v1/activity/users/all /applications/login?maxResults=maximum number of events returned on a response page &eventName=name of the login event &filters=event parameter relational operator parameter value
以下範例說明如何擷取特定網域的所有可疑成功登入:
GET https://admin.googleapis.com/admin/reports/v1/activity/users/all/applications/login?eventName=login_success&filters=is_suspicious==true&maxResults=25