修改用户信息隐私协议,服务条款版本号(ModifyUserAgreement)
modifyUserAgreement
API 用于更改服务条款版本和自建账号的隐私策略版本。
请求参数
参数 | 类型 | 描述 | 备注 |
---|---|---|---|
token | string | LI PASS 的用户授权令牌 | 必填 |
openid | string | LI PASS 的 UID | 必填 |
privacy_policy | string | 隐私协议版本号 不能设置成之前已经设置过的版本,只能升级版本 | 必填 |
terms_of_service | string | 服务条款版本号 不能设置成之前已经设置过的版本,只能升级版本 | 必填 |
请求示例
accountApi.modifyUserAgreement(
{
token: 'xxx',
openid: 'xxx',
privacy_policy: '0.1',
terms_of_service: '0.1',
}
).then((res) => {
console.log(res);
});
返回参数
参数 | 类型 | 描述 |
---|---|---|
ret | number | 返回代码 0:请求成功 !=0:请求失败,查看 msg 详细结果说明 |
msg | string | 结果说明 |
privacy_policy | string | 用户隐私协议版本 |
terms_of_service | string | 用户服务条款版本 |
seq | string | 数据流消息序号 |
返回示例
{
msg: "Success",
privacy_policy: "0.1",
ret: 0,
seq: "1638240816-0180225310-032531-0000367889",
terms_of_service: "0.1",
}