官网文档

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

https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#onShareAppMessage-Object-object


基础使用

onShareTimeline(){
    return {
        title: '',
        query: '',
        imageUrl: ''
    }
}

注意事项

  1. 只能分享当前页面,也就是无法像分享给朋友那样,指定path
  2. 只支持安卓
  3. 嵌入了web-view的页面,即使配置了也无法分享,按钮是灰色的
  4. 无法像分享朋友那样通过代码触发,只能右上角三个点进入分享
  5. 分享打开的页面是一个特有的页面,无法调用一些接口,如登录接口,所以屏蔽一些接口的调用。


其他尝试

百度中有在嵌入了webview的页面做分享的示例

https://blog.csdn.net/weixin_45059911/article/details/131644643