LI PASS密码登录
signIn
API 用于玩家通过账号和密码登录 LI PASS。
请求参数
参数 | 类型 | 描述 | 备注 |
---|---|---|---|
account | string | 账号 邮箱或手机号(暂不支持手机) | 必填 |
account_type | number | 账号类型 1:邮件 2:电话号码 (目前不支持) | 必填 |
password | string | 更多信息,请参见 密码规则。 | 必填 |
phone_area_code | string | 手机区号 | account_type 为 2 时必填 |
machine_check_type | number | CAPTCHA 类型 3:腾讯 Captcha | 在 Player Network 设置开启人机校验时需要 |
tencent_response | string | 腾讯 Captcha 返回值 需要转成字符串,如: JSON.stringify({"appid":"xxx","ret":0, "ticket":"t030...ECE*","randstr":"@BHo"}) . | machine_check_type 为 3 时必填 |
请求示例
accountApi.signIn(
{
account: 'xxx@gmail.com',
account_type: 1,
password: 'xxx',
}
).then((res) => {
console.log(res);
});
返回参数
参数 | 类型 | 描述 |
---|---|---|
ret | number | 返回代码 0:请求成功,解析相关返回的字段信息。 !=0:请求失败,检查 msg 查看详细的退货信息。 |
msg | string | 结果说明 |
token | string | 用户授权令牌 |
uid | string | LI PASS 的 UID |
seq | string | 数据流消息序号 |
expire | int64 | 令牌过期时间 Unix 时间 |
返回示例
{
expire: 1638490279
msg: "Success",
ret: 0,
seq: "1638190279-0180225865-002725-0000290492",
token: "xxx",
uid: "xxx",
}