realm/{域ID}/app/{AppID}/user/{用户ID}/online_status
{ "users": [ { "userID": "user1", "status": "STATUS_ONLINE", "devices": [ { "deviceType": 1 } ] } ] }
{ "userIDs": [ "string" ] }
curl --location '/user/status/query' \ --header 'Content-Type: application/json' \ --data '{ "userIDs": [ "string" ] }'
{ "code": 0, "message": "", "data": { "@type": "type.googleapis.com/hileia_core_security.QueryUserStatusResp", "users": [ { "userID": "user1", "status": "STATUS_ONLINE", "devices": [ { "deviceType": 1 } ] }, { "userID": "user2", "status": "STATUS_OFFLINE", "devices": [] } ] } }