修改个人信息 (ModifyProfile)
modifyProfile
API 用于修改 LI PASS个用户信息。
请求参数
参数 | 类型 | 描述 | 备注 |
---|---|---|---|
token | string | LI PASS 的用户授权令牌 | 必填 |
openid | string | LI PASS 的 UID | 必填 |
user_name | string | 用于登录的用户名 | 选填 |
nick_name | string | 用于展示的用户昵称,可重复 | 选填 |
region | string | ISO 3166-1 国家或地区的数字代码 例如 156 代表中国,040 代表奥地利 | 选填 |
is_receive_email | number | 是否接收邮件推送 1:推送 其他:不推送 | 选填 |
请求示例
accountApi.modifyProfile(
{
token: 'xxx',
openid: 'xxx',
user_name: 'xxx',
nick_name: 'xxx',
birthday: 'xxx',
region: 'xxx'
}
).then((res) => {
console.log(res);
});
返回参数
参数 | 类型 | 描述 |
---|---|---|
ret | number | 返回代码 0:请求成功 !=0:请求失败,查看 msg 详细结果说明 |
msg | string | 结果说明 |
birthday | string | 用户生日 YYYY-MM |
string | 邮箱 | |
is_receive_email | number | 是否接收邮件推送 1:推送 其他:不推送 |
lang_type | string | 语言类型 详见 语言类型定义 |
nick_name | string | 用于展示的用户昵称,可重复 |
phone | string | 手机号码 |
phone_area_code | string | 手机区号 |
region | string | ISO 3166-1 国家或地区的数字代码 例如 156 代表中国,040 代表奥地利 |
seq | string | 数据流消息序号 |
user_name | string | 用于登录的用户名 |
返回示例
{
birthday: "1998-10",
email: "user@email.com",
is_receive_email: 0,
lang_type: "en",
msg: "Success",
nick_name: "abc",
phone: "",
phone_area_code: "",
region: "156",
ret: 0,
seq: "1638239120-0180225310-032531-0000366843",
user_name: "abc",
}