阅读(1790)
赞(10)
tt.followOfficialAccount
2020-02-12 17:44:05 更新
关注小程序绑定的头条号,可以通过checkFollowState接口获取当前关注状态
⚠️注意只能在 bindtap 中使用该 api
参数
object 类型,属性如下:
属性 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | 1.30.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 1.30.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 1.30.0 |
success 返回参数说明
属性 | 类型 | 说明 |
---|---|---|
errCode | number | api 调用状态码,如果为 0 表示调用成功 |
代码示例
tt.followOfficialAccount({
success(res) {
if (res.errCode === 0) {
console.log("关注成功");
} else {
console.log(res.errMsg);
}
}
});
← 调起方法