- 获取onShareAppMessage分享参数?
data() { return { //1 轮播图数据列表 swiperList: [], //2 商品数据列表 goodsList: [], //推广参数 id: '', share: { shareId: '10000', //推广用户ID title: '移动业务推广', path: '/pages/home/home?id=1000', // 全局分享的路径,比如 首页 posterImg: 'https://www.fslygo.com:8001/mobile/2023/05/25/poster_20230525235210A007.jpg' } }; }, // 1.发送给朋友 onShareAppMessage(res) { //console.log('onShareAppMessage',res) return { title: this.share.title, path: this.share.path, query: 'id=' + this.share.shareId, imageUrl: this.share.posterImg, } }, //2.分享到朋友圈 onShareTimeline(res) { //console.log('onShareTimeline',res) return { title: this.share.title, path: this.share.path, query: 'id=' + this.share.shareId, imageUrl: this.share.posterImg, } },
2023-05-29 - 小程序页面加了onShareAppMessage函数还是不能分享
[图片] [图片] 当前页面的js中已经加了onShareAppMessage函数 为什么还是不能分享这个页面。 有的页面可以 这个页面就是不行 求救 为啥啊。调试工具和真机都不行
2023-09-04 - 小程序转发给朋友及分享朋友圈的按钮为灰色,如何恢复权限?
小程序转发给朋友及分享朋友圈按钮为灰色,不能点击,该怎么解决?[图片]
2022-06-01 - 官方说存在web-view的页面,不支持分享朋友圈。但我看有小程序实现了,请问怎么实现的?
[图片] 这里是加载了公众号文章的网页,应该只能用web-view实现吧,但是可以分享朋友圈,请问是怎么实现的?
2023-06-09 - 微信物流助手-查询运单轨迹接口,返回值缺失action_type轨迹节点状态字段
接口文档地址:https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/express/express-by-business/getPath.html 运单轨迹接口返回数据描述: [图片] 实际客户小程序返回的接口数据: 接口请求参数: curl --location 'https://api.weixin.qq.com/cgi-bin/express/business/path/get?access_token=74_4h06IZ7WCu0cLE04nR4pl_RtMnSbvAdF3sM-t9xK_iaR1kWct8LNaicmARnt5JyFjlICtpSVYRRr2qWYZ_vzNyMdPVlc61oJ9ABEfSYGsatx4ptGA4IcQ0VzSJAIXGiACAZOX' \ --header 'Content-Type: application/json' \ --header 'Postman-Token: 79f52a8b-254a-4986-8aa6-71cd07867d38' \ --header 'cache-control: no-cache' \ --data '{ "order_id": "O202311131416321100163974", "openid": "obAmN66EDziA_91aMQxYJAsVY5QY", "delivery_id": "YUNDA", "waybill_id": "312247037488841" }' 返回数据格式:明细看到缺失接口文档定义的action_type [图片]
2023-11-17