SDKs code references for Unity
Easily embed Xsolla services with this ready-to-use libraries for Unity applications and games
All Classes Namespaces Functions Variables Enumerations Enumerator Pages
Xsolla.Auth.XsollaAuth Class Reference

Static Public Member Functions

static bool IsUserAuthenticated ()
 Checks if the user is authenticated. Returns true if the token exists and the user is authenticated.
 
static void Register (string username, string password, string email, Action< LoginLink > onSuccess, Action< Error > onError, string redirectUri=null, string state=null, string locale=null, bool? acceptConsent=null, bool? promoEmailAgreement=null, List< string > fields=null)
 Creates a new user account in the application and sends a sign-up confirmation email to the specified email address. To complete registration, the user should follow the link from the email. To disable email confirmation, contact your Account Manager. More...
 
static void SignIn (string username, string password, Action onSuccess, Action< Error > onError, string redirectUri=null)
 Authenticates the user by the username/email and password specified via the authentication interface. More...
 
static void StartAuthByEmail (string email, Action< OperationId > onSuccess, Action< Error > onError, string redirectUri=null, string state=null, string locale=null, bool? sendLink=null, string linkUrl=null)
 Starts user authentication and sends an email with a one-time code and a link to the specified email address (if login via magic link is configured for the Login project) More...
 
static void CompleteAuthByEmail (string email, string confirmationCode, string operationId, Action onSuccess, Action< Error > onError)
 Completes authentication after the user enters a one-time code or follows a link received in an email. More...
 
static void StartAuthByPhoneNumber (string phoneNumber, Action< OperationId > onSuccess, Action< Error > onError, string redirectUri=null, string state=null, bool? sendLink=null, string linkUrl=null)
 Starts user authentication and sends an SMS with a one-time code and a link to the specified phone number (if login via magic link is configured for the Login project). More...
 
static void CompleteAuthByPhoneNumber (string phoneNumber, string confirmationCode, string operationId, Action onSuccess, Action< Error > onError)
 Completes authentication after the user enters a one-time code or follows a link received by SMS. More...
 
static void ResetPassword (string email, Action onSuccess, Action< Error > onError, string redirectUri=null, string locale=null)
 Resets the user’s current password and sends an email to change the password to the email address specified during sign-up. More...
 
static void ResendConfirmationLink (string username, Action onSuccess, Action< Error > onError, string redirectUri=null, string state=null, string locale=null)
 Resends a sign-up confirmation email to the specified email address. To complete registration, the user must follow the link from the email. More...
 
static void AuthWithSocialNetworkAccessToken (string accessToken, string accessTokenSecret, string openId, string provider, Action onSuccess, Action< Error > onError, string redirectUri=null, string state=null)
 Authenticates the user with the access token using social network credentials. More...
 
static bool AuthViaSavedToken ()
 [Obsolete. Use AuthBySavedToken instead.] Authenticates the user by saved token. Returns true if the token is loaded successfully and the user is authenticated
 
static void AuthBySavedToken (Action onSuccess, Action< Error > onError)
 Authenticates user with the saved token.

Parameters
onSuccessCalled after successful authentication.
onErrorCalled after the request resulted with an error.

 
static void AuthWithXsollaWidget (Action onSuccess, Action< Error > onError, Action onCancel, string locale=null)
 Authenticates the user with Xsolla Login widget. For standalone builds, the widget opens in the built-in browser that is included with the SDK. More...
 
static void AuthViaXsollaLauncher (Action onSuccess, Action< Error > onError)
 Authenticates the user via Xsolla Launcher More...
 
static void Logout (Action onSuccess, Action< Error > onError, LogoutType logoutType=LogoutType.All)
 Logs the user out and deletes the user session according to the value of the sessions parameter (OAuth2.0 only). More...
 
static void SignInConsoleAccount (string userId, string platform, Action onSuccess, Action< Error > onError)
 This method is used for authenticating users in Xsolla Login, who play on the consoles and other platforms where Xsolla Login isn't used. You must implement it on your server side. Integration flow on the server side:

  1. Generate server JWT
    • Connect OAuth 2.0 server client. Follow the instructions to connect the client and cope copy the Client ID and Secret key.
    • Implement method: with application/x-www-form-urlencoded payload parameters:
      • client_id=YOUR_CLIENT_ID
      • client_secret=YOUR_CLIENT_SECRET
      • grant_type=client_credentials
  2. Implement auth method with:
More...
 
static void AuthViaDeviceID (Action onSuccess, Action< Error > onError, DeviceInfo deviceInfo=null, string redirectUri=null, string state=null)
 Authenticates the user via a particular device ID. More...
 
static void SilentAuth (string providerName, string appId, string sessionTicket, Action onSuccess, Action< Error > onError, string redirectUri=null, string state=null, string code=null)
 Authenticates a user by exchanging the session ticket from Steam, Xbox, or Epic Games to the JWT. More...
 
static string GetSocialNetworkAuthUrl (SocialProvider provider, string redirectUri=null, string state=null)
 Returns URL for authentication via the specified social network in a browser. More...
 
static void GetLinksForSocialAuth (Action< SocialNetworkLinks > onSuccess, Action< Error > onError, string locale=null)
 Returns list of links for social authentication enabled in Publisher Account (your Login project > Authentication > Social login section). The links are valid for 10 minutes. You can get the link by this call and add it to your button for authentication via the social network. More...
 
static void RefreshToken (Action onSuccess, Action< Error > onError, string redirectUri=null)
 Refreshes the token in case it is expired. Works only when OAuth 2.0 is enabled. More...
 
static void ExchangeCodeToToken (string code, Action onSuccess, Action< Error > onError, string redirectUri=null)
 Exchanges the user authentication code to a valid JWT. More...
 
static void GetUserInfo (Action< UserInfo > onSuccess, Action< Error > onError)
 Returns user details. More...
 
static void AuthViaSocialNetwork (SocialProvider provider, Action onSuccess, Action< Error > onError, Action onCancel)
 Authenticates user via an account in the specified social networks. More...
 

Member Function Documentation

◆ AuthViaDeviceID()

static void Xsolla.Auth.XsollaAuth.AuthViaDeviceID ( Action  onSuccess,
Action< Error onError,
DeviceInfo  deviceInfo = null,
string  redirectUri = null,
string  state = null 
)
inlinestatic

Authenticates the user via a particular device ID.

More about the use cases.

Parameters
onSuccessCalled after successful user authentication via the device ID.
onErrorCalled after the request resulted with an error.
deviceInfoInformation about the device that is used to identify the user. if not specified, the method defines this infotmation automatically.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. xsollatest by default. Required for OAuth 2.0.

◆ AuthViaSocialNetwork()

static void Xsolla.Auth.XsollaAuth.AuthViaSocialNetwork ( SocialProvider  provider,
Action  onSuccess,
Action< Error onError,
Action  onCancel 
)
inlinestatic

Authenticates user via an account in the specified social networks.

More about the use cases.

Parameters
providerName of a social network. Provider must be connected to Login in Publisher Account. Can be amazon, apple, baidu, battlenet, discord, facebook, github, google, kakao, linkedin, mailru, microsoft, msn, naver, ok, paypal, psn, qq, reddit, steam, twitch, twitter, vimeo, vk, wechat, weibo, yahoo, yandex, youtube, or xbox.
onSuccessCalled after successful user authentication.
onErrorCalled after the request resulted with an error.
onCancelCalled in case user closed browser.

◆ AuthViaXsollaLauncher()

static void Xsolla.Auth.XsollaAuth.AuthViaXsollaLauncher ( Action  onSuccess,
Action< Error onError 
)
inlinestatic

Authenticates the user via Xsolla Launcher

More about the use cases.

Parameters
onSuccessCalled after successful authentication.
onErrorCalled after the request resulted with an error.

◆ AuthWithSocialNetworkAccessToken()

static void Xsolla.Auth.XsollaAuth.AuthWithSocialNetworkAccessToken ( string  accessToken,
string  accessTokenSecret,
string  openId,
string  provider,
Action  onSuccess,
Action< Error onError,
string  redirectUri = null,
string  state = null 
)
inlinestatic

Authenticates the user with the access token using social network credentials.

Parameters
accessTokenAccess token received from a social network.
accessTokenSecretParameter oauth_token_secret received from the authorization request. Required for Twitter only.
openIdParameter openid received from the social network. Required for WeChat only.
providerName of the social network connected to Login in Publisher Account. Can be facebook, google, linkedin, twitter, discord, naver, baidu, wechat, or qq_mobile.
onSuccessCalled after successful user authentication on the specified platform.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. xsollatest by default. Required for OAuth 2.0.

◆ AuthWithXsollaWidget()

static void Xsolla.Auth.XsollaAuth.AuthWithXsollaWidget ( Action  onSuccess,
Action< Error onError,
Action  onCancel,
string  locale = null 
)
inlinestatic

Authenticates the user with Xsolla Login widget. For standalone builds, the widget opens in the built-in browser that is included with the SDK.

More about the use cases.

Parameters
onSuccessCalled after successful authentication.
onErrorCalled after the request resulted with an error.
onCancelCalled after browser closing by user.
localeLogin widget UI language. Supported languages: Arabic (ar_AE), Bulgarian (bg_BG), Czech (cz_CZ), Filipino (fil-PH), English (en_XX), German (de_DE), Spanish (es_ES), French (fr_FR), Hebrew (he_IL), Indonesian (id-ID), Italian (it_IT), Japanese (ja_JP), Khmer (km-KH), Korean (ko_KR), Lao language ( lo-LA), Myanmar (my-MM), NepaliPolish (ne-NP), (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).

◆ CompleteAuthByEmail()

static void Xsolla.Auth.XsollaAuth.CompleteAuthByEmail ( string  email,
string  confirmationCode,
string  operationId,
Action  onSuccess,
Action< Error onError 
)
inlinestatic

Completes authentication after the user enters a one-time code or follows a link received in an email.

More about the use cases.

Parameters
emailUser email address.
confirmationCodeConfirmation code.
operationIdIdentifier of the confirmation code.
onSuccessCalled after successful email authentication.
onErrorCalled after the request resulted with an error.

◆ CompleteAuthByPhoneNumber()

static void Xsolla.Auth.XsollaAuth.CompleteAuthByPhoneNumber ( string  phoneNumber,
string  confirmationCode,
string  operationId,
Action  onSuccess,
Action< Error onError 
)
inlinestatic

Completes authentication after the user enters a one-time code or follows a link received by SMS.

More about the use cases.

Parameters
phoneNumberUser phone number.
confirmationCodeConfirmation code.
operationIdIdentifier of the confirmation code.
onSuccessCalled after successful phone number authentication.
onErrorCalled after the request resulted with an error.

◆ ExchangeCodeToToken()

static void Xsolla.Auth.XsollaAuth.ExchangeCodeToToken ( string  code,
Action  onSuccess,
Action< Error onError,
string  redirectUri = null 
)
inlinestatic

Exchanges the user authentication code to a valid JWT.

Parameters
codeAccess code received from several other OAuth 2.0 requests (example: code from social network authentication).
onSuccessCalled after successful exchanging. Contains exchanged token.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.

◆ GetLinksForSocialAuth()

static void Xsolla.Auth.XsollaAuth.GetLinksForSocialAuth ( Action< SocialNetworkLinks onSuccess,
Action< Error onError,
string  locale = null 
)
inlinestatic

Returns list of links for social authentication enabled in Publisher Account (your Login project > Authentication > Social login section). The links are valid for 10 minutes. You can get the link by this call and add it to your button for authentication via the social network.

Parameters
onSuccessCalled after list of links for social authentication was successfully received.
onErrorCalled after the request resulted with an error.
localeRegion in the language code_country code format, where:
  • language code — language code in the ISO 639-1 format;
  • country code — country/region code in the ISO 3166-1 alpha-2 format.
    The list of the links will be sorted from most to least used social networks, according to the variable value.

◆ GetSocialNetworkAuthUrl()

static string Xsolla.Auth.XsollaAuth.GetSocialNetworkAuthUrl ( SocialProvider  provider,
string  redirectUri = null,
string  state = null 
)
inlinestatic

Returns URL for authentication via the specified social network in a browser.

More about the use cases.

Parameters
providerName of a social network. Provider must be connected to Login in Publisher Account. Can be amazon, apple, baidu, battlenet, discord, facebook, github, google, kakao, linkedin, mailru, microsoft, msn, naver, ok, paypal, psn, qq, reddit, steam, twitch, twitter, vimeo, vk, wechat, weibo, yahoo, yandex, youtube, or xbox.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. xsollatest by default. Required for OAuth 2.0.

◆ GetUserInfo()

static void Xsolla.Auth.XsollaAuth.GetUserInfo ( Action< UserInfo onSuccess,
Action< Error onError 
)
inlinestatic

Returns user details.

More about the use cases.

Parameters
onSuccessCalled after successful user details were successfully received.
onErrorCalled after the request resulted with an error.

◆ Logout()

static void Xsolla.Auth.XsollaAuth.Logout ( Action  onSuccess,
Action< Error onError,
LogoutType  logoutType = LogoutType.All 
)
inlinestatic

Logs the user out and deletes the user session according to the value of the sessions parameter (OAuth2.0 only).

Parameters
onSuccessCalled after successful user logout.
onErrorCalled after the request resulted with an error.
logoutTypeShows how the user is logged out and how the user session is deleted. Can be sso or all (default). Leave empty to use the default value.

◆ RefreshToken()

static void Xsolla.Auth.XsollaAuth.RefreshToken ( Action  onSuccess,
Action< Error onError,
string  redirectUri = null 
)
inlinestatic

Refreshes the token in case it is expired. Works only when OAuth 2.0 is enabled.

Parameters
onSuccessCalled after successful token refreshing. Refresh data including the JWT will be received.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.

◆ Register()

static void Xsolla.Auth.XsollaAuth.Register ( string  username,
string  password,
string  email,
Action< LoginLink onSuccess,
Action< Error onError,
string  redirectUri = null,
string  state = null,
string  locale = null,
bool?  acceptConsent = null,
bool?  promoEmailAgreement = null,
List< string >  fields = null 
)
inlinestatic

Creates a new user account in the application and sends a sign-up confirmation email to the specified email address. To complete registration, the user should follow the link from the email. To disable email confirmation, contact your Account Manager.

More about the use cases.

Parameters
usernameUsername.
passwordUser password.
emailUser email address.
onSuccessCalled after successful user registration. An account confirmation message will be sent to the specified email address if not disabled.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. xsollatest by default. Required for OAuth 2.0.
localeDefines localization of the email the user receives.
The following languages are supported: Arabic (ar_AE), Bulgarian (bg_BG), Czech (cz_CZ), 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), English (en_XX, default).
acceptConsentWhether the user gave consent to processing of their personal data.
promoEmailAgreementUser consent to receive the newsletter.
fieldsParameters used for extended registration form. To use this feature, please contact your Account Manager.
See also
SignIn, ResetPassword, ResendConfirmationLink

◆ ResendConfirmationLink()

static void Xsolla.Auth.XsollaAuth.ResendConfirmationLink ( string  username,
Action  onSuccess,
Action< Error onError,
string  redirectUri = null,
string  state = null,
string  locale = null 
)
inlinestatic

Resends a sign-up confirmation email to the specified email address. To complete registration, the user must follow the link from the email.

More about the use cases.

Parameters
usernameUsername or user email address.
onSuccessCalled after successful sending of the request.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. xsollatest by default. Required for OAuth 2.0.
localeDefines localization of the email user receives. The following languages are supported: Arabic (ar_AE), Bulgarian (bg_BG), Czech (cz_CZ), 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), English (en_XX, default).
See also
Register, SignIn, ResetPassword

◆ ResetPassword()

static void Xsolla.Auth.XsollaAuth.ResetPassword ( string  email,
Action  onSuccess,
Action< Error onError,
string  redirectUri = null,
string  locale = null 
)
inlinestatic

Resets the user’s current password and sends an email to change the password to the email address specified during sign-up.

More about the use cases.

Parameters
emailEmail to send the password change verification message to.
onSuccessCalled after successful user password reset.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
localeDefines localization of the email the user receives. The following languages are supported: Arabic (ar_AE), Bulgarian (bg_BG), Czech (cz_CZ), 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), English (en_XX, default).
See also
Register, SignIn, ResendConfirmationLink

◆ SignIn()

static void Xsolla.Auth.XsollaAuth.SignIn ( string  username,
string  password,
Action  onSuccess,
Action< Error onError,
string  redirectUri = null 
)
inlinestatic

Authenticates the user by the username/email and password specified via the authentication interface.

More about the use cases.

Parameters
usernameUsername or email address.
passwordUser password.
onSuccessCalled after successful user authentication.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
See also
SignInConsoleAccount, Register, ResetPassword, ResendConfirmationLink

◆ SignInConsoleAccount()

static void Xsolla.Auth.XsollaAuth.SignInConsoleAccount ( string  userId,
string  platform,
Action  onSuccess,
Action< Error onError 
)
inlinestatic

This method is used for authenticating users in Xsolla Login, who play on the consoles and other platforms where Xsolla Login isn't used. You must implement it on your server side. Integration flow on the server side:

  1. Generate server JWT
    • Connect OAuth 2.0 server client. Follow the instructions to connect the client and cope copy the Client ID and Secret key.
    • Implement method: with application/x-www-form-urlencoded payload parameters:
      • client_id=YOUR_CLIENT_ID
      • client_secret=YOUR_CLIENT_SECRET
      • grant_type=client_credentials
  2. Implement auth method with:

Parameters
userIdSocial platform (XBox, PS4, etc) user unique identifier.
platformPlatform name (XBox, PS4, etc).
onSuccessCalled after successful user authentication. Authentication data including the JWT will be received.
onErrorCalled after the request resulted with an error.

◆ SilentAuth()

static void Xsolla.Auth.XsollaAuth.SilentAuth ( string  providerName,
string  appId,
string  sessionTicket,
Action  onSuccess,
Action< Error onError,
string  redirectUri = null,
string  state = null,
string  code = null 
)
inlinestatic

Authenticates a user by exchanging the session ticket from Steam, Xbox, or Epic Games to the JWT.

More about the use cases.

Parameters
providerNamePlatform on which the session ticket was obtained. Can be steam, xbox, or epicgames.
appIdPlatform application identifier.
sessionTicketSession ticket received from the platform.
onSuccessCalled after successful user authentication with a platform session ticket. Authentication data including a JWT will be received.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. Will be xsollatest by default. Used only for OAuth2.0 auth.
codeCode received from the platform.

◆ StartAuthByEmail()

static void Xsolla.Auth.XsollaAuth.StartAuthByEmail ( string  email,
Action< OperationId onSuccess,
Action< Error onError,
string  redirectUri = null,
string  state = null,
string  locale = null,
bool?  sendLink = null,
string  linkUrl = null 
)
inlinestatic

Starts user authentication and sends an email with a one-time code and a link to the specified email address (if login via magic link is configured for the Login project)

More about the use cases.

Parameters
emailUser email address.
onSuccessCalled after successful email authentication start.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. xsollatest by default. Required for OAuth 2.0.
localeDefines localization of the email the user receives. The following languages are supported: Arabic (ar_AE), Bulgarian (bg_BG), Czech (cz_CZ), 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), English (en_XX, default).
sendLinkShows whether a link is sent with the confirmation code in the email or not.
linkUrlURL to redirect the user to the status authentication page.

◆ StartAuthByPhoneNumber()

static void Xsolla.Auth.XsollaAuth.StartAuthByPhoneNumber ( string  phoneNumber,
Action< OperationId onSuccess,
Action< Error onError,
string  redirectUri = null,
string  state = null,
bool?  sendLink = null,
string  linkUrl = null 
)
inlinestatic

Starts user authentication and sends an SMS with a one-time code and a link to the specified phone number (if login via magic link is configured for the Login project).

More about the use cases.

Parameters
phoneNumberUser phone number.
onSuccessCalled after successful phone number authentication start.
onErrorCalled after the request resulted with an error.
redirectUriURI to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the OAuth 2.0 redirect URIs specified in Publisher Account. Required if there are several URIs.
stateValue used for additional user verification on backend. Must be at least 8 symbols long. xsollatest by default. Required for OAuth 2.0.
sendLinkShows whether a link is sent with the confirmation code in the SMS or not.
linkUrlURL to redirect the user to the status authentication page.

The documentation for this class was generated from the following file: