<script type="text/javascript">
var baseUrl = "http://weixinpay.voole.com/weixin";
document.addEventListener('WeixinJSBridgeReady', function onBridgeReady() {
window.shareData = {
"imgUrl": baseUrl+"/images/activity_1.jpg",
"shareLink": "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx123456789&redirect_uri="+baseUrl+"/action/TdCard_init.do&response_type=code&scope=snsapi_base&state=asdf#wechat_redirect",
"title": "优朋陪你,清凉一“夏”",
"content": "优朋陪你,清凉一“夏”VIP改版升级,打造全新视觉体验, 经过了世界杯期间的兴奋激动及熬夜看球的辛苦,你是否错过了许多优秀的电影、电视剧,那么利用这炎热的夏天待在家里开着空调,快来“补”上这一“课”吧。"
};
// 发送给好友
WeixinJSBridge.on('menu:share:appmessage', function (argv) {
WeixinJSBridge.invoke('sendAppMessage', {
"img_url": window.shareData.imgUrl,
"img_width": "640",
"img_height": "640",
"link": window.shareData.shareLink,
"desc": window.shareData.content,
"title": window.shareData.title
}, function (res) {
//_report('send_msg', res.err_msg);
})
});
// 分享到朋友圈
WeixinJSBridge.on('menu:share:timeline', function (argv) {
WeixinJSBridge.invoke('shareTimeline', {
"img_url": window.shareData.imgUrl,
"img_width": "640",
"img_height": "640",
"link": window.shareData.shareLink,
"desc": window.shareData.content,
"title": window.shareData.title
}, function (res) {
//_report('timeline', res.err_msg);
});
});
// 分享到微博
WeixinJSBridge.on('menu:share:weibo', function (argv) {
WeixinJSBridge.invoke('shareWeibo', {
"content": window.shareData.content,
"url": window.shareData.shareLink,
}, function (res) {
//_report('weibo', res.err_msg);
});
});
}, false);
</script>