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:
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:
- bash
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:
- javascript
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
- Add a button with the
on-click
event and thexl.open()
function to your HTML page:
- html
<div id="xl_auth" style="display: none"></div>
<button onclick="showFullscreen()">Fullscreen widget</button>
- Add the code to open the widget in the
<div>
block of your HTML page.
Add the following code to the JS file:
- javascript
xl.mount('xl_auth');
const showFullscreen = () => {
const myDiv = document.querySelector('#xl_auth');
myDiv.style.display = 'block';
xl.open();
}
Found a typo or other text error? Select the text and press Ctrl+Enter.