bl.getGameUpperFollowingStatus(Object object)
基础库 3.0.0 开始支持,低版本需做兼容处理
获取当前小游戏所对应的 up 主是否被用户关注过。小游戏所对应的 up 主默认为小游戏绑定的管理员(商家账号 up 主),如需修改请与运营同学联系。
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
object.success 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
follow | number | 0 表示未关注,1 表示已关注 |
示例代码
bl.getGameUpperFollowingStatus({
success(res) {
console.log("success", res.follow);
},
fail() {
console.log("fail");
},
complete() {
console.log("complete");
}
});