Authentication via device ID
Device ID authentication lets users start using the application on a mobile device without entering registration data. The first time a user logs in to the application using the device ID, a new account is created automatically, and the user doesn’t need to enter a username, email address, or other data.
With the device ID, you can implement user authentication on one or more mobile devices in the background mode. To use this function, the user should link the device ID to an existing account.
The SDK supports authentication via ID of mobile devices on Android and iOS.
To enable user authentication via device ID for your project:
- Open your project in Publisher Account and go to the Login section.
- Click Configure in the pane of a Login project.
- In the top settings block, click Login API integration.
- Set the Login with device ID toggle to On.
- Click Save changes.
Get device ID
The device ID is generated by the platform and is available in applications installed on the mobile device. The SDK gets the ID value via the platform API and uses this value to perform various functions with the Xsolla API.
The iOS device ID is passed in the UIDevice.identifierForVendor property. The Android device ID is passed in the android.provider.Settings.Secure.ANDROID_ID constant. The standard Unreal Engine Get Device Id method is used to determine the ID.
SDK methods
The SDK implements methods for the following functions:
Authentication
SDK method name | Description |
---|---|
AuthenticateViaDeviceId | Authenticates the user to the application using the current device ID. |
LogoutUser | Ends the active user session. |
Account upgrade
SDK method name | Description |
---|---|
LinkEmailAndPassword | Adds a username, email address, and password, that can be used for authentication, to the current account. |
LinkSocialNetworkToUserAccount | Links a social network that can be used for authentication to the current account. |
Device management
SDK method name | Description |
---|---|
GetUsersDevices | Returns a list of devices linked to the current user account. |
LinkDeviceToAccount | Links the specified device to the current user account. |
UnlinkDeviceFromAccount | Unlinks the specified device from the current user account. |
Found a typo or other text error? Select the text and press Ctrl+Enter.