- H5卡牌分享PC端微信出错?
let _this = this; wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 // 配置微信 JSSDK appId: _this.wxConfig.appId, // 必填,公众号的唯一标识 timestamp: _this.wxConfig.timestamp, // 必填,生成签名的时间戳 nonceStr: _this.wxConfig.nonceStr, // 必填,生成签名的随机串 signature: _this.wxConfig.signature, // 必填,签名 jsApiList: [ 'checkJsApi', 'updateAppMessageShareData', 'pdateTimelineShareData' ] }) wx.ready(function() { console.log('这是分享功能') wx.updateAppMessageShareData({ title: 'AI1', // 分享标题 desc: '生活工作神器1', // 分享描述 link: '', imgUrl: '', success: function(res) { console.log('我来分享了') }, cancel: function() { console.log('取消') } }) wx.updateTimelineShareData({ title: 'AI2', // 分享标题 desc: '生活工作神器2', // 分享描述 link: '', imgUrl: '', success: function(res) { console.log('我来分享了') }, cancel: function() { console.log('取消') } }) }) wx.error((res) => { console.log(res) }) 上述代码,在手机端苹果和安卓都可以正常分享我指定的link,到PC端微信就报错了,错误信息:{"errMsg":"updateTimelineShareData:function not implement"},分享的是当前页面的链接。
10-17 - H5卡片分享,不显示标题,描述,图片?
let _this = this; wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 // 配置微信 JSSDK appId: _this.wxConfig.appId, // 必填,公众号的唯一标识 timestamp: _this.wxConfig.timestamp, // 必填,生成签名的时间戳 nonceStr: _this.wxConfig.nonceStr, // 必填,生成签名的随机串 signature: _this.wxConfig.signature, // 必填,签名 jsApiList: [ 'checkJsApi', 'updateAppMessageShareData', 'pdateTimelineShareData' ] }) wx.ready(function() { console.log('这是分享功能') wx.updateAppMessageShareData({ title: 'AI1', // 分享标题 desc: '生活工作神器1', // 分享描述 link: '', imgUrl: '', success: function(res) { console.log('我来分享了') }, cancel: function() { console.log('取消') } }) wx.updateTimelineShareData({ title: 'AI2', // 分享标题 desc: '生活工作神器2', // 分享描述 link: '', imgUrl: '', success: function(res) { console.log('我来分享了') }, cancel: function() { console.log('取消') } }) }) wx.error((res) => { console.log(res) }) [图片] [图片] [图片] [图片] h5网页,微信打开,页面加载的时候会加载好分享配置,图1,2,3是debug模式弹出框,点击分享按钮提示点击右上角分享,点击分享给好友后,如图4,只有链接,是我代码里面写的链接,标题、描述、图片都没有,也不是卡片模式
10-17 - {"errcode":48001,"errmsg":"api unauthorized?
微信公众号模板消息,9月20日,老的接口停了,我们就更换了新的发送接口https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=ACCESS_TOKEN,其它都没改,现在报错{"errcode":48001,"errmsg":"api unauthorized,我们权限是有开通的,我看了一下,之前我们获取token是用小程序的appid获取的,发送公众号模板信息是可以正常发送,现在改了链接后,就48001,会不会是因为这个,我跟后端同事反馈了,还没改,我先来问问懂的朋友 [图片]
2023-09-26