tt.shareMessageToFriend
收藏
我的收藏基础库 2.74.0 开始支持本方法,这是一个异步方法。
给指定的好友分享游戏信息。
前提条件 | 无 |
业务背景 | 无 |
使用限制 | 目前仅支持 抖音、抖音极速版 APP |
注意事项 |
|
相关教程 | 无 |
语法
tt.shareMessageToFriend(options)
参数说明
options 为 object 类型,属性如下:
属性名 | 类型 | 默认值 | 必填 | 说明 | 最低支持版本 |
---|---|---|---|---|---|
query | string | 否 | 查询字符串,格式为JSONString。从这条转发消息进入后,可通过 tt.getLaunchOptionsSync 或 tt.onShow 获取启动参数中的 query 用来实现信息透传 | 2.74.0 | |
openId | string | 是 | 发送对象的 openId | 2.74.0 | |
templateId | string | 是 | 分享素材模板 id,指定通过平台审核的 templateId 来选择分享内容,需在平台设置且通过审核 | 2.74.0 | |
success | function | 否 | 接口调用成功的回调函数 | 2.74.0 | |
fail | function | 否 | 接口调用失败的回调函数 | 2.74.0 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | 2.74.0 |
回调成功
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "shareMessageToFriend:ok" | 2.74.0 |
回调失败
object 类型,属性如下:
属性名 | 类型 | 说明 | 最低支持版本 |
---|---|---|---|
errMsg | string | "shareMessageToFriend:fail" + 详细错误信息 | 2.74.0 |
错误码
errorCode | errMsg | errorType | 说明 | 最低支持版本 |
---|---|---|---|---|
999999 | get game user info error | D | 2.74.0 | |
999999 | get share info error | D | 2.74.0 | |
999995 | cancel | U | 2.74.0 | |
999999 | invalid param | D | 参数错误 | 2.74.0 |
120901 | frequency_control | U | 今天TA接受到的邀请太多啦,明天再试试吧 | 2.74.0 |
120902 | get game user info catch error | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
120903 | get share info catch error${JSON.stringify(error)} | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
999987 | feature is not supported in app | D | 2.74.0 | |
999986 | sendMessage is in progress, please do not call again | D | 2.74.0 | |
999991 | container not exist | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
999999 | no openID | D | 2.74.0 | |
999999 | query error | D | 2.74.0 | |
999999 | schema error | D | 2.74.0 | |
999999 | query conent error | D | 2.74.0 | |
999999 | sec_uid not exist | D | 2.74.0 | |
120908 | get target uid failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
120905 | sendMessage failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
999993 | internal error | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
999996 | shareMessageToFriend | D | 2.74.0 | |
120909 | sendGameInviteMessage failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
120910 | sendGameInviteMessage failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
120911 | sendGameInviteMessage failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
120912 | sendGameInviteMessage failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
999993 | sendGameInviteMessage failed | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
999993 | native exception | F | 小游戏框架内部错误,有需要请创建工单咨询 | 2.74.0 |
999999 | share info entity error | D | 2.74.0 | |
999999 | game user info entity error | D | 2.74.0 |
代码示例
let queryObj = { 'key1': 'value1', 'key2': 'value2', }; tt.shareMessageToFriend({ openId: 'xxxxx', templateId: 'xxxxxx', query: JSON.stringify(queryObj), success(res) { console.log('success'); }, fail(res) { console.log('fail', res); }, });
点击纠错