小程序云开发托管了静态网页,使用updateAppMessageShareData无效
wx.config({
// debug: true, // 调试时可开启
appId: 'wxd72ae4a5dafe3851', // <!-- replace -->
timestamp: 0, // 必填,填任意数字即可
nonceStr: 'nonceStr', // 必填,填任意非空字符串即可
signature: 'signature', // 必填,填任意非空字符串即可
jsApiList: ['chooseImage', 'updateAppMessageShareData', 'updateTimelineShareData'], // 必填,随意一个接口即可
openTagList: ['wx-open-launch-weapp'], // 填入打开小程序的开放标签名
})
wx.error(function (err) {
console.log('wx.config 失败', err);
});
wx.ready(function () {
var shareData = {
title: '八万里服务4', // 分享标题
desc: '专注东南亚生活服务', // 分享描述
link: 'https://xishi-ticket-8g10k0v1d08148a8-1319809833.tcloudbaseapp.com/openmini.html?sign=8fec9edbcc614ee4e334591cd26f5869&t=1693813562', // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: 'https://xishi-ticket-8g10k0v1d08148a8-1319809833.tcloudbaseapp.com/images/bwl_logo.png?sign=e1362620077b906c7b5917f1fdf1e400&t=1693815310', // 分享图标
success: function () {
// 设置成功
alert('1')
},
fail: function (err) {
// 设置失败
console.log(...err)
alert(err);
}
};
wx.updateAppMessageShareData(shareData);
wx.updateTimelineShareData(shareData);
});