ドキュメント

サポート

Access installation IDs

Implement code in your game to access users' installation IDs.
読み終わるまでの所要時間 1 分最終更新 2日前

Before you can respond to user Data Subject Requests to access or delete their Diagnostics data, you first need the user to provide their installation ID. You can make this information available anywhere you choose in your game, such as on a privacy page or the main menu. To access the user's installation ID in your game, use the following code:
using UnityEngine.Identifiers;string installationId = Identifiers.installationId;Debug.Log($"Installation ID: {installationId}");
For information about how to respond to Data Subject Requests, refer to Data Subject Request process.