抖音开放平台Logo
开发者文档
控制台

tt.offShareAppMessage
收藏
我的收藏

基础库 1.0.0 开始支持本方法,这是一个同步方法。

取消监听用户点击右上角菜单的“转发”按钮时触发的事件。

前提条件
业务背景
使用限制
注意事项
相关教程

语法

tt.offShareAppMessage()

参数说明

返回值

错误码

errorCodeerrMsgerrorType说明最低支持版本
999993internal errorF
小游戏框架内部错误,有需要请创建工单咨询
1.0.0

扫码体验

请使用字节宿主APP扫码

代码示例

开发者工具中预览

function onShareAppMessage(res) { console.log(res); } // 监听菜单按钮“转发” tt.onShareAppMessage(onShareAppMessage); // 取消监听菜单按钮“转发” setTimeout(() => { tt.offShareAppMessage(onShareAppMessage); }, 2000);