laptop and a wrench

不具合

In ArcGIS Online, the last login date does not update when a member logs in using the ArcGIS Field Maps or through ArcGIS Online on a mobile device.

ArcGIS Online
不具合 ID 番号 BUG-000169358
送信されましたJuly 24, 2024
最終更新日April 15, 2025
適用対象ArcGIS Online
見つかったバージョンJune 2024
オペレーティング システムWindows OS
オペレーティング システムのバージョン11.0 64 bit
ステータスIn Review

対処法

The ArcGIS API for Python can also be used to determine the last login in ArcGIS Online. Determine the last login in ArcGIS Enterprise portal and ArcGIS Online using ArcGIS API for Python.

Modified script version:

import arcgis

import time

from arcgis.gis import GIS

gis = GIS("https://arcgis.com", username="username", password="password")

print("connected")

a_users = gis.users.search(query='username1')

print(str(a_users))

for a_user in a_users:

  if a_user. lastLogin != -1:

    last_accessed = time.localtime(a_user. lastLogin/1000)

    print(str(a_user. fullName) + " was last active on: {}.{}.{} {}:{}\n".format(last_accessed[2], last_accessed[1], last_accessed[0], last_accessed[3], last_accessed[4]))

  else:

   print(str(a_user. fullName) + " has never logged in.\n")

The result should display the login date and time in German format, e.g., 'User 1 was last active on: 24.7.2024 12:15'.

再現の手順

不具合 ID: BUG-000169358

ソフトウェア:

  • ArcGIS Online

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動