Xsolla-logo
  • 文档
  • 创建帐户

更新用户的双因素认证设置Client-side

post/users/me/mfa

更新用户的双因素认证设置。用户必须输入一次性代码来确认更改。

此调用的使用流程:

  1. 用户启用或禁用双因素认证。
  2. 应用程序将请求发送到艾克索拉登录管理器服务器。
  3. 艾克索拉登录管理器服务器向用户发送一次性验证码,并返回双因素认证页面的URL。
  4. 应用程序将用户重定向到该URL。
  5. 用户输入一次性代码。
  6. 应用新的双因素认证设置。

您必须为登录管理器项目启用双因素认证。请联系您的客户成功经理来启用。

SecurityBearer
Request
query Parameters
login_url
string

URL to redirect the user to after account confirmation, successful authentication, two-factor authentication configuration, or password reset confirmation. Must be identical to the Callback URL specified in the URL block of Publisher Account. For the scenario of a login error, the value should be identical to the the Error callback URL specified in the URL block of Publisher Account. To find the settings, go to Login > your Login project and select the Callback URLs section in the upper block. Required if there are several Callback URLs.

Request Body schema: application/json
mfa_type
required
string

第二个因素的类型。可以是:emailsms。您必须为登录管理器项目启用指定的类型。请联系您的客户成功经理进行设置。

Enum: "email" "sms"
enabled
boolean
Default: false

双因素认证设置的状态。设置为true值以启用,设置为false值以禁用。

locale
string

<language code>_<country code> 格式的区域,其中:

Responses
200

确定

401

未授权

422

无法处理的实体

429

请求过多

Request samples
application/json
{
  • "enabled": true,
  • "mfa_type": "email"
}