# ks.checkFollowState
# ks.checkFollowState(Object obejct)
查看关注官方帐号状态
请求 object
字段名 | 类型 | 描述 | values |
---|---|---|---|
accountType | string | 要关注的用户类型 CPServiceAccount : CP的服务号 MiniGameOfficialAccount:快手小游戏官方号 说明:不需要填具体的帐号,就填这两个字符串就可以了,参考示例 | |
callback | callback | 回调信息 |
callback
字段名 | 类型 | 描述 | values |
---|---|---|---|
errorCode | int | 1 表示成功 | |
errorMsg | string | 错误信息 | |
hasFollow | bool | 是否关注 |
example
checkFollowCPServiceAccount() {
this.content.string = "check Follow CP Service Account";
ks.checkFollowState({
accountType: "CPServiceAccount",
callback: (result) => {
if (result.errorCode === -10005) {
// 表明暂不支持官方号,可以隐藏官方号入口,或者cp根据自己业务处理 this.content.string = `not support CPServiceAccount`
} else {
// 支持该业务,正常处理业务逻辑即可
this.content.string = `check Follow CP Service Account, result: ${JSON.stringify(result)}`;
}
}
})
}