小程序禁止二次转发分享

 

 

 

 业务场景, 一些私密的小程序分享,  禁止二次转发

https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share/private-message.html

 

https://developers.weixin.qq.com/miniprogram/dev/api/share/wx.updateShareMenu.html

 

 

 

 

 demo代码:

// 用户点击分享
  onShareAppMessage(res) {
    // isPrivateMessage: true转发私密消息=>然后通过 wx.updateShareMenu 接口声明本次分享的消息为私密消息,私密消息具有不可二次转发性。
    wx.updateShareMenu({
        isPrivateMessage: true,
        success () { },
        fail () {}
    })
    return {
      title: "", // 自定义分享标题
      imageUrl: "", // 自定义分享图片
      path: "", // 自定义分享页面路径,默认本页面路径
    };
  },

 

posted @ 2023-04-07 15:54  大熊丨rapper  阅读(381)  评论(0编辑  收藏  举报