Authenticate users in your application

To ensure security and correct operation of payment transactions, the Xsolla API uses the user JSON Web Token (JWT), obtained during authorization using Xsolla Login.

Below, you can find instructions for the fastest way to integrate Xsolla Login — integrating a ready-made web widget into the application.

If you want to use your own UI to log users into your application, you should implement user authentication logic using the Login API or SDK methods.

Choose the most suitable SDK for your project:

Note

General instructions for importing the widget and working with it are given in the README file.

Use test web applications as an implementation example:

Connect Xsolla Login widget SDK

The Xsolla Login widget is available for installation using the NPM package manager or the <script> tag on an HTML page.

Connect the Xsolla Login widget SDK in one of the following ways:

Launch the console and run the command:

Copy
Full screen
Small screen
npm i @xsolla/login-sdk

Initialize Xsolla Login widget SDK

Initialize the widget using one of the methods below. Specify the following parameters:

  • projectId — Login project ID. You can find it in your project in Publisher Account, in the Login > Dashboard section.
  • preferredLocale — the interface language. The following languages are supported: Arabic (ar_AE), Bulgarian (bg_BG), Czech (cz_CZ), English (en_US), German (de_DE), Spanish (es_ES), French (fr_FR), Hebrew (he_IL), Italian (it_IT), Japanese (ja_JP), Korean (ko_KR), Polish (pl_PL), Portuguese (pt_BR), Romanian (ro_RO), Russian (ru_RU), Thai (th_TH), Turkish (tr_TR), Vietnamese (vi_VN), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW).
  • clientId — OAuth 2.0 client ID. You can find it in your project in Publisher Account, in the Login > your Login project > Security > OAuth 2.0 section.
  • redirectUri — The URL the user is redirected to after they confirm their account, log in, or confirm password reset. Must be specified in the Publisher Account in the OAuth 2.0 client settings.

Leave the rest of the parameters unchanged.

Add the initialization code to the JS file:

Copy
Full screen
Small screen
import { Widget } from '@xsolla/login-sdk';
const xl = new Widget({
  projectId: 'LOGIN_PROJECT_ID',
  preferredLocale: 'en_US'
  clientId: 'CLIENT_ID',
  responseType: 'code',
  state: 'CUSTOM_STATE',
  redirectUri: 'REDIRECT_URI',
  scope: 'SCOPE'
});

Add Xsolla Login widget opening

  1. Add a button with the on-click event and the xl.open() function to your HTML page:
Copy
Full screen
Small screen
<div id="xl_auth" style="display: none"></div>
<button onclick="showFullscreen()">Fullscreen widget</button>
  1. Add the code to open the widget in the <div> block of your HTML page.

Add the following code to the JS file:

Copy
Full screen
Small screen
xl.mount('xl_auth');
const showFullscreen = () => {
  const myDiv = document.querySelector('#xl_auth');
  myDiv.style.display = 'block';
  xl.open();
}
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: December 20, 2024

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.