tt.openAwemeUserProfile收藏我的收藏
收藏
我的收藏基础库 1.84.0 开始支持本方法,这是一个异步方法。
跳转个人抖音号主页,用户可以选择关注/取消关注抖音号。
前提条件 | 使用该功能前开发者需要绑定想要查看的抖音号,参考游戏内关注抖音号能力接入指南
|
业务背景 | 无 |
使用限制 | 暂时只支持在抖音及抖音极速版 App 上使用。 |
注意事项 | 无 |
相关教程 | 无 |
语法
tt.openAwemeUserProfile(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
success | function | 否 | 接口调用成功的回调函数 | 1.84.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 1.84.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 1.84.0 |
回调成功
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
hasFollowed | boolean | 是否关注抖音号 | 1.84.0 |
errMsg | string | "openAwemeUserProfile:ok" | 1.84.0 |
回调失败
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "openAwemeUserProfile:fail" + 详细错误信息 | 1.84.0 |
错误码
errNo | errMsg | 说明 | 最低支持版本 |
---|---|---|---|
21100 | openAwemeUserProfile:fail | 关注失败与超时 | 1.84.0 |
10301 | openAwemeUserProfile:fail feature is not supported in app | 宿主不支持 | 1.84.0 |
10601 | openAwemeUserProfile:fail not login | 玩家没有登录 | 1.84.0 |
21101 | openAwemeUserProfile:fail aweme uid is null | 没有绑定想要跳转的抖音号 | 1.84.0 |
代码示例
tt.openAwemeUserProfile({ success: (res) => { console.log('是否关注抖音号', res.hasFollowed) }, fail: (res) => { console.log('调用失败', res) } })
使用效果
无论用户是否已经转关,调用后在游戏内都会弹出关注面板,点击用户头像可以跳转至 抖音号主页。
点击纠错