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.

Note
Use user ID authentication if Xsolla Login isn’t set up in your 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.
Note
Use User ID and deep link authentication if your game supports deep links for authentication.
  • 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.
Note
Use deep link authentication if your game supports deep links for 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.
Note
Use Xsolla login authentication if this solution is already set up in your game.
For any of the authentication method, you can add a Fast Login block to your site.

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

  1. 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.
  1. The user clicks the Log in via Mobile Game button.
  2. The user is redirected to the game and then automatically back to the Web Shop as an authorized user.

  1. 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.

  1. The user scans the QR code using their mobile device.
  2. The Web Shop opens on the user's mobile device.
  3. The user is automatically redirected to the game and then back to the Web Shop as an authenticated user.
  1. 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

    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://authorize?operationPayload=<VALUE>, where:
    • 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.

    Examples:
Copy
Full screen
Small screen
<key>CFBundleURLTypes</key>
  <array>
    <dict>
      <key>CFBundleTypeRole</key>
      <string>Editor</string>
      <key>CFBundleURLSchemes</key>
      <array>
        <string>gamename</string>
      </array>
    </dict>
  </array>

  1. Implement the generation of an authorization token in JWT format using the user ID from the game.

ParameterTypeDescription
loginId
stringID of the authorization method from the Publisher Account. Required.
settings.projectId
stringProject 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
stringMerchant 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
stringUser ID in the game. Required.
user.country
stringTwo-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
stringAn additional parameter containing information for token generation during authentication. Required.

    Example of calling the user token generation API method using curl:

Copy
Full screen
Small screen
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"}.

  1. Add a pop-up window with a notification of successful authorization (optional).
  2. 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 domain
    • https:​//example.xsolla.site/?token={token}, if you are using an Xsolla domain
    Where {token} is the user’s authorization token.
Note
First set up authentication via User ID. This is necessary so that users have an alternative way of authentication if deep link authentication is not available. For example, if the game is not installed on a user’s mobile device.
  1. Open your project in Publisher Account and go to Site Builder.
  2. Click Configure on the card of your Web Shop site with authentication via User ID.
  3. Go to the Login Settings and select the User ID section.
  4. Enable Deeplink authorization toggle.
  1. In the Deeplink URL field enter the link for user authentication.
  1. If you are using the Fast Login block on the site:
    1. Go to the Fast Login block.
    2. In the Layout section, enable the QR code toggle.
  1. To check the authentication, click on Preview.
  2. 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:

  1. Open the project in Publisher Account.
  2. In the side menu, click Site Builder.
  3. In the Sites section, select your site and click Open Site Builder.
  4. Click Add block.
  5. Choose Fast Login block.
Note

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

  1. Test Web Shop in sandbox mode.
  2. Publish the site.

Integration flow

Was this article helpful?
Thank you!
Is there anything we can improve? Message
We’re sorry to hear that
Please explain why this article wasn’t helpful to you. Message
Thank you for your feedback!
We’ll review your message and use it to help us improve your experience.
Last updated: April 2, 2025

Found a typo or other text error? Select the text and press Ctrl+Enter.

Report a problem
We always review our content. Your feedback helps us improve it.
Provide an email so we can follow up
Thank you for your feedback!
We couldn't send your feedback
Try again later or contact us at doc_feedback@xsolla.com.