2018-06-19 微信的分享

//获取“分享到朋友圈”按钮点击状态及自定义分享内容接口
wx.onMenuShareTimeline({
title: "我的预测我坐庄", // 分享标题
desc: "预测更多快乐",
link: "https://fcc.hutudan.com/game/index?eCode=" + 0, // 分享链接
imgUrl: "https://cdn.epaynfc.com/fcc/1/earn4.png", // 分享图标
success: function () {
// httpGet(host + '/guess/share')
}
});
//获取“分享给朋友”按钮点击状态及自定义分享内容接口
wx.onMenuShareAppMessage({
title: "我的预测我坐庄", // 分享标题
desc: "预测更多快乐",
link: "https://fcc.hutudan.com/game/index?eCode=" + 0, // 分享链接
imgUrl: "https://cdn.epaynfc.com/fcc/1/earn4.png", // 分享图标
success: function () {}
});

你可能感兴趣的:(2018-06-19 微信的分享)