- jssdk 公众号朋友圈分享使用jweixin-1.6.0版本分享没报错但不工作?
环境:微信开发者工具、真实手机、iPhone 7, 7Plus, 11Pro Max, Android 华为 M6 Jweixin版本:1.6.0 (其实我也试过1.4.0,一样有问题) 时间:2020/04/04 19:34:21 - 19:36:59 (China Standard Time) AppId: wxaf95f18b86178aa1 问题:在微信网页里面使用API : updateTimelineShareData无法分享。wx.config 成功,wx.updateTimelineShareData 控制台里面显示调用成功。但始终没有弹出分享控件来分享。 我微信的日志上传了,微信号:cxyxe1986 $(function () { if (document.location.href.indexOf('details') > 0) { $.ajax({ url: _configUrl, type: "GET", error: function (res) { console.log(JSON.stringify(res)); //alert(JSON.stringify(res)); $.toast.prototype.defaults.duration = 900; $.toast('分享失败,请稍后再试。', 'text'); }, success: function (data) { console.log(data); wx.config({ debug: false, appId: data.appId, timestamp: data.timestamp, nonceStr: data.nonce, signature: data.signature, jsApiList: ['checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage', 'updateTimelineShareData', 'updateAppMessageShareData' , 'getLocation', 'scanQRCode', 'uploadImage', 'downloadImage', 'showAllNonBaseMenuItem', 'hideAllNonBaseMenuItem'] }); wx.checkJsApi({ jsApiList: ['checkJsApi', 'updateAppMessageShareData', 'updateTimelineShareData', 'onMenuShareAppMessage', 'onMenuShareTimeline', 'getLocation', 'scanQRCode', 'uploadImage', 'downloadImage', 'showAllNonBaseMenuItem', 'hideAllNonBaseMenuItem' ], success: function (res) { console.log(res) // 以键值对的形式返回,可用的api值true,不可用为false // 如:{"checkResult":{"chooseImage":true},"errMsg":"checkJsApi:ok"} } }); wx.error(function (res) { alert("error00:" + JSON.stringify(res)); }); } }); } $('.ea-share').on('click', function () { //shareProject(shareData); wx.ready(function () { console.log('enter wx.ready3') wx.updateTimelineShareData({ title: shareData.title, link: shareData.link, imgUrl: shareData.imgUrl, success: function (res) { console.log('shared success'); console.log(res); $.ajax({ type: 'POST', url: _baseUrl + '/customer/shared/project/' + shareData.projectId, success: function (res) { //console.log(res) $.toast('分享成功', 'text') }, error: function (xhr, code, error) { console.log(xhr.responseText); } }); }, cancel: function (res) { console.log(res); $.toast('cancel', 'text') } }); wx.error(function (res) { alert("errorMSG2:" + res); }); }); wx.error(function (res) { alert("errorMSG3:" + res); }); }); }); function tryShare(type) { wx.ready(function () { console.log('enter menuShare') if (type == 1) wx.onMenuShareTimeline(_configShare); else if (type == 2) wx.onMenuShareAppMessage(_configShare); else if (type == 3) wx.updateTimelineShareData(_configShare); else wx.updateAppMessageShareData(_configShare); wx.error(function (res) { alert("errorMSG:" + res); }); }); } [图片]
2020-04-04 - 公众号网页使用JSSDK微信朋友圈分享失效-jweixin-1.6.0?
环境:微信开发者工具、真实手机、iPhone 7, 7Plus, 11Pro Max, Android 华为 M6 Jweixin版本:1.6.0 (其实我也试过1.4.0,一样有问题) 时间:Tue Mar 31 2020 16:58:58 GMT+0800 (China Standard Time) AppId: wxaf95f18b86178aa1、wx80d1ee2d2e8fcb5d (我与同事尝试了两个不同的APPID都是一样的情况) 问题:在微信网页里面使用API : updateTimelineShareData无法分享。wx.config 成功,wx.updateTimelineShareData成功,并有回调。但没有弹出分享无法分享。 补充: 开启debug模式的话,提示 {"errMsg":"config:ok"}, 以及 {"errMsg":"updateTimelineShareData:ok"},也成功的回调了success 回调函数。但没又弹出分享操作。 之后啥反应都没有。通过开发者工具,也看起来很正常,但无法分享。 checkJsApi:ok, wx.updateTimelineShareData begin wx.updateTimelineShareData end 怎么解决? [图片]
2020-03-31