사용자 정의 위챗 코일 공유 테이프의 사진과 내용

3249 단어 사용자 정의
    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)

좋은 웹페이지 즐겨찾기