Set up user authentication
Authentication allows users to buy items in the Web Shop and see unique offers in the catalog.
Key features of the Web Shop with authentication:
- Multiple authorization methods in the Web Shop.
- Set up personalized storefronts and promo codes for authorized users.
- Compliance with regional laws and regulations for the protection and processing of personal data.
- Rate limit and DDoS protection.
You can choose one of the following authentication methods:
- User ID authentication:
- Simplifies the integration of the Web Shop with the game.
- The authentication widget does not require registration or password entry. A user simply needs to enter the user ID from the game or use the same social network account for login as for logging in to the game.
- User ID and deep link authentication:
- Deep links can be used as an additional authentication method when logging in via User ID.
- The User ID and deep link authentication widget does not require registration or password entry. The user simply needs to enter their User ID from the game or log in via the game using a deep link.
- Deep link authentication:
- When a deep link is used as the primary login method, it allows saving payment details, which is not possible with user ID authentication.
- Authentication via Xsolla Login:
- Provides a wide range of authorization methods: social networks, one-time codes or links, and login and password.
- Allows you to customize the Xsolla Login widget.
- You can impose age restrictions on authorization.
A deep link is a special URL that directs the user not just to the main page of an application or website but directly to a specific section, page, or action.
Deep links can be used as an additional authentication method when logging in via user ID. If the game is installed on the user’s mobile device, they will be redirected to the game via deep link to get an authorization token.
User flow
In the mobile app
- An unauthorized user in the Web Shop clicks the login button or the buy button. A modal window for entering the user ID or logging in through the mobile game opens.
- The user clicks the Log in via Mobile Game button.
- The user is redirected to the game and then automatically back to the Web Shop as an authorized user.
In the desktop version
- An unauthorized user in the Web Shop clicks the login button or the buy button. A modal window for entering the user ID or logging into the mobile version of the game using a QR code opens.
- The user scans the QR code using their mobile device.
- The Web Shop opens on the user's mobile device.
- The user is automatically redirected to the game and then back to the Web Shop as an authenticated user.
Services interaction flow
How to set up
On the game side
- In your game’s mobile app settings, register a URL scheme to open the game via deep link:
- in Android applications — in the
AndroidManifest.xml
file - in iOS applications — in the
Info.plist
file
- in Android applications — in the
- After registering the scheme, when the user authenticates in the Web Shop via the game, the game should open at the specified address.
- Example of a URL scheme to register a game:
gamename
— the name of your game that should open on a mobile device for user authentication.authorize
— an example of an action name that should be performed after the gamename game opens. Use the action name that matches the actions in your application\’s operating system.operationPayload=<VALUE>
— an additional parameter containing information for token generation during authentication.
gamename://authorize?operationPayload=<VALUE>
, where:- Examples:
- xml
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>gamename</string>
</array>
</dict>
</array>

- Implement the generation of an authorization token in JWT format using the user ID from the game.
Parameter | Type | Description |
---|---|---|
loginId | string | ID of the authorization method from the Publisher Account. Required. |
settings.projectId | string | Project ID found in Publisher Account, which is specified next to the name of your project in browser address bar. The URL has the following format: https://publisher.xsolla.com/<merchantId>/projects/<projectId> . Required. |
settings.merchantId | string | Merchant ID found in Publisher Account, specified in the Company settings > Company section or in the browser address bar on any page of the Publisher Account. The URL has the following format: https://publisher.xsolla.com/<merchantId>/ . Required. |
user.id | string | User ID in the game. Required. |
user.country | string | Two-letter uppercase country code per ISO 3166-1 alpha-2. Check the documentation for detailed information about countries supported by Xsolla and the process of determining the country. Required. Example: US |
operationPayload | string | An additional parameter containing information for token generation during authentication. Required. |
- Example of calling the user token generation API method using curl:
- curl
curl -X 'POST' \
'https://sb-user-id-service.xsolla.com/api/v1/user-id/token' \
-H 'accept: /' \
-H 'Content-Type: application/json' \
-d '{
"loginId": "000001aa-001a-0ab0-00001-01a01a01a01a",
"settings": {
"projectId": 123456,
"merchantId": 123456
},
"user": {
"id": "123",
"country": "US"
}
"operationPayload": "kosarb2NyrtIWaegJAH1f6P7XrBYPXYDya5coc_ZzcfiS_5o4QTUAL-CcGRC_Kv4CAtg"
}'
- You will get a response like
{token="JWT_TOKEN"}
.- Add a pop-up window with a notification of successful authorization (optional).
- Implement the opening of the Web Shop in the browser using the obtained user token.
- Example of creating a URL for opening the Web Shop in the browser for an authorized user:
https://example.com/?token={token}
, if you are using a custom domainhttps://example.xsolla.site/?token={token}
, if you are using an Xsolla domain
- Where
{token}
is the user’s authorization token.Within Site Builder
- Open your project in Publisher Account and go to Site Builder.
- Click Configure on the card of your Web Shop site with authentication via User ID.
- Go to the Login Settings and select the User ID section.
- Enable Deeplink authorization toggle.
- In the Deeplink URL field enter the link for user authentication.
- If you are using the Fast Login block on the site:
- Go to the Fast Login block.
- In the Layout section, enable the QR code toggle.
- To check the authentication, click on Preview.
- To publish the website, click on Publish.
Set up Fast Login block
The Fast Login block provides users with an additional way to authenticate on the site.
The appearance of the block and its features depend on the selected authentication method.
If authentication via user ID is configured for the site, the Fast Login block displays a field for entering the ID and a login button.
Features:
- User authentication without additional transition to the modal window.
- Setting up the content of the block. You can enable and configure the following sections:
- Title
- Description
- Instructions on how to find the user ID
- Custom background
You can also expand the features of the block, for example, add text, a button, or an image, using JS code.

If authentication via Xsolla Login is configured for the site, an additional button calling for authorization is displayed in the Fast Login block. When you click on the button in the block, a modal window opens for authorization using one of the Xsolla Login methods.
Features:
- Setting up the text of the button calling for authorization
- Setting up a custom background
You can also expand the features of the block, for example, add text, a button, or an image, using JS code.
For new sites, the Fast Login block is added to Web Shop template by default, and you can remove it if necessary.
If you created a site earlier and it doesn’t have a Fast Login block, you can add it.
To add a Fast Login block:
- Open the project in Publisher Account.
- In the side menu, click Site Builder.
- In the Sites section, select your site and click Open Site Builder.
- Click Add block.
- Choose Fast Login block.
To use the Fast Login block, an authorization option should be chosen in advance from the drop-down list in the Login settings section.
For the user ID authentication method in the Login settings section, you also need to specify the URL to receive the webhook. If you don’t specify it, the site can’t be published because user authentication will be unavailable.
User authentication during site preview is possible without adding a webhook URL.
Next steps
Useful links
Found a typo or other text error? Select the text and press Ctrl+Enter.