- updateAppMessageShareDate设置不了title,和分享图标,为啥呢?
jWeixin.config({ debug: false, // 开启调试模式 appId: res.data.appId, // 必填,公众号的唯一标识 timestamp: res.data.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.nonceStr, // 必填,生成签名的随机串 signature: res.data.signature, // 必填,签名 jsApiList: [ 'updateAppMessageShareData', 'updateTimelineShareData', 'onMenuShareAppMessage', //旧的接口,即将废弃 'onMenuShareTimeline' //旧的接口,即将废弃 ] }); window.share_config = { //自定义分享内容 share: { imgUrl: that.infos.imgUrl, //分享图标 desc: that.infos.desc, //分享介绍 title: that.infos.title, //分享标题 link: that.infos.link, //分享网址 success: function(res) {} } } jWeixin.checkJsApi({ jsApiList: [ 'updateAppMessageShareData', 'updateTimelineShareData', 'onMenuShareAppMessage', //旧的接口,即将废弃 'onMenuShareTimeline' //旧的接口,即将废弃 ], success: function (res) { console.log('wx checkJsApi success') }, fail: function () { console.log('wx checkJsApi fail') alert('您的微信当前版本不支持此分享功能!') } }) jWeixin.ready(function() { jWeixin.onMenuShareAppMessage(share_config.share); jWeixin.updateAppMessageShareData(share_config.share); // TODO jWeixin.updateTimelineShareData(share_config.share); });
2022-01-22 - 未查询到ICP备案,若网站刚刚完成备案,请等待3个工作日再开始填写业务,域名已备案,为啥还是提示?
公众号配置安全域名和相关js域名时提示:未查询到ICP备案,若网站刚刚完成备案,请等待3个工作日再开始填写业务域名 域名已在4月份备案过了,好几个月了。域名:shutrans.com,备案号:粤ICP备2021056201号,希望微信官方人员协助处理一下
2021-08-24