(即将废弃)tt.getShopRecordToken
收藏
我的收藏注意
基础库 2.74.0.0 开始支持本接口,使用时可用 tt.canIUse 判断是否可用。
语法
tt.getShopRecordToken(options);
参数说明
options 为 Object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
shopId | string | -- | 是 | 2.55.0 | |
type | number | -- | 是 | token 应用类型: 1:更新积分(当前仅支持更新积分) | 2.55.0 |
success | function | -- | 否 | 接口调用成功的回调函数 | 2.55.0 |
fail | function | -- | 否 | 接口调用失败的回调函数 | 2.55.0 |
complete | function | -- | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 2.55.0 |
回调成功
参数为 Object 类型,属性如下:
参数 | 参数类型 | 说明 | 最低支持版本 |
recordToken | string | 获取 recordToken,在更新积分等涉及资产变动接口中使用,防止重复调用 | 2.55.0 |
errMsg | string | 回调信息 | 2.55.0 |
回调失败
参数为 Object 类型,属性如下:
参数 | 参数类型 | 说明 | 最低支持版本 |
errLogId | string | 错误日志 ID | 2.55.0 |
errMsg | string | 错误信息 | 2.55.0 |
errNo | number | 错误码 | 2.55.0 |
错误码说明
errNo | errMsg | 说明 | 最低支持版本 |
10101 | Platform auth deny | 权限错误,不在白名单内; | 2.55.0 |
10301 | The feature is only support in Douyin and DonyinLite | 仅支持在抖音、抖音极速版使用,当前 App 不支持这个功能 | 2.55.0 |
20000 | xxx should be string, but got xxx | 参数类型校验错误,请检查参数类型 | 2.55.0 |
21500 | Invalid login status, please check login status | 获取宿主登录信息失败,用户未登录 | 2.55.0 |
21501 | Network error | 网络错误,请检查网络状况 | 2.55.0 |
21502 | Server error | 服务端网关错误(如 404、502 等),请联系客服助手 | 2.55.0 |
代码示例
tt.getShopRecordToken({ shopId: "xxxxxxxx", type: 1, success: (res) => console.log("调用成功", res), fail: (err) => console.log("调用失败", err), });
Bug & Tip
无。