自定义微信圈分享带的图片和内容

时间:2014-12-22 22:34:30   收藏:0   阅读:313
    document.addEventListener(‘WeixinJSBridgeReady‘, function onBridgeReady() {
        window.shareData = {
            "timeLineLink": "",
            "sendFriendLink": "",
            "weiboLink": "",
            "tTitle": "",
            "tContent": "",
            "fTitle": "",
            "fContent": "",
            "wContent": ""
        };
        // 发送给好友
        WeixinJSBridge.on(‘menu:share:appmessage‘, function (argv) {
            WeixinJSBridge.invoke(‘sendAppMessage‘, {
                "img_url": "",
                "img_width": "401",
                "img_height": "275",
                "link": window.shareData.sendFriendLink,
                "desc": window.shareData.fContent,
                "title": window.shareData.fTitle
            }, function (res) {
                _report(‘send_msg‘, res.err_msg);
            })
        });
        // 分享到朋友圈
        WeixinJSBridge.on(‘menu:share:timeline‘, function (argv) {
            WeixinJSBridge.invoke(‘shareTimeline‘, {
                "img_url": "",
                "img_width": "401",
                "img_height": "275",
                "link": window.shareData.timeLineLink,
                "desc": window.shareData.tContent,
                "title": window.shareData.tTitle
            }, function (res) {
                _report(‘timeline‘, res.err_msg);
            });
        });

    }, false)

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!