shareTo 웹 버전 공유

6979 단어 sha
// share --------

var shareTo = function (dest, shareCode) {



    var appKey = "1667889534";  //  appkey:"3050999700"



    var ralateUid = "2248818320";  //  ralateUid: "1801487174"



    //  ;shareCode  

    var url = location.href + "?shareCode=" + shareCode;



    var source = " ";



    var sourceUrl = "http://from-my-fundation";



    var title = " ~~";



    var pic = "http://beauty-face";



    //  

    var shareUrl = "";



    switch (dest.toLowerCase()) {

        case "sina":  //  

            shareUrl = "http://service.weibo.com/share/share.php?url="+ encodeURIComponent(url) +"&appkey=" + appKey + "&title=" + encodeURIComponent(title) + "&ralateUid=" + ralateUid + "&source=" + encodeURIComponent(source) + "&sourceUrl=" + encodeURIComponent(sourceUrl)+ "&pic=" + encodeURIComponent(pic) + "&searchPic=false";

            break;

        case "tencent": //  

             shareUrl = "http://v.t.qq.com/share/share.php?url=" + encodeURIComponent(url) + "&appkey="+ appKey +"&site=http://www.eastmoney.com&title=" + encodeURIComponent(title) + "&pic=" + encodeURIComponent(pic);

             break;

        case "qzone":  // qq 

            shareUrl = "http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=" + encodeURIComponent(url) + "&title=" + encodeURIComponent(source) + "&pics=" + encodeURIComponent(pic) + "&summary=" +encodeURIComponent(title) + "&desc=" +encodeURIComponent(title);

            break;

        case "renren":

            shareUrl = "http://widget.renren.com/dialog/share?resourceUrl=" + encodeURIComponent(url) +'&srcUrl='+ encodeURIComponent(url) +'&images='+ encodeURIComponent(pic) + "&title=" + encodeURIComponent(source)  + "&description=" + encodeURIComponent(title);

            break;

        case "sohu":

            shareUrl = "http://t.sohu.com/third/post.jsp?&appkey="+ appKey +"&url=" + encodeURIComponent(url) + "&title=" + encodeURIComponent(title) + "&content=utf-8&pic=" + encodeURIComponent(pic); //

            break;

        case "msn":

            shareUrl = "http://profile.live.com/badge/?url=" + encodeURIComponent(url) + "&title=" + encodeURIComponent(title) + "&description=" + encodeURIComponent(title);

            break;

        case "douban":

            shareUrl = "http://www.douban.com/recommend/?url=" + encodeURIComponent(url) + "&title=" + encodeURIComponent(title);

            break;

        case "kaixin":

            shareUrl = "http://www.kaixin001.com/repaste/bshare.php?rtitle=" + encodeURIComponent(title) + "&rurl=" + encodeURIComponent(url) + "&rcontent=" + encodeURIComponent(title);

            break;

        case "eastmoney":  //  

            shareUrl = "http://t.eastmoney.com/share.aspx?url=" + encodeURIComponent(url) + "&title=" + encodeURIComponent(title) + "&r=" + Math.random();

            break;

        case "guba": //  

            shareUrl = "http://iguba.eastmoney.com/share?url=" + encodeURIComponent(url) + "&title=" + encodeURIComponent(title) + "&r=" + Math.random();

            break;

    }



    window.open(shareUrl);

};



// example:  

shareTo("tencent", "fromVia");

좋은 웹페이지 즐겨찾기