jquery ajax調用新浪微博內容方法

來源:互聯網
上載者:User

現在流行的東西微博是網上玩的比較火的東西,今天我們就來利用新浪app來實現擷取指定微博賬戶的微博內容記錄方法。希望給大家協助。

<html>
<head>
<title>新浪微博APP開發應用樣本之擷取指定微博賬戶的微博內容記錄</title>
<script type="text/網頁特效" src="http://js.wcdn.cn/t3/platform/js/api/wb.js" charset="utf-8" ></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
</head>
<body>
微博ID:<input type="text" id="id"/><br/>
提取微博的數量(最多20條):<input type="text" id="num"/><br/>
<input type="button" onclick="testt($('#id').val(),$('#num').val());" value="button"/>
</body>
<script type="text/javascript">
WB.core.load(['connect', 'client'], function() {
    var cfg = {
        key: '3274830762',
        xdpath: 'sina.html'
    };
    WB.connect.init(cfg);
    WB.client.init(cfg);
});
function testt(id,num){
 $.ajax({
                url: "http://api.t.sina.com.cn/statuses/user_timeline.json",
                data: "source=941123049&user_id=" + id, //"method=read", //$("#textBox1").children().serialize()
//source 處是appkey
                dataType: "jason",
                type: "POST",
                success: function(data) {
                        //alert(data.length);
                        var t = eval('(' +data+ ')');
                        //alert(data);
                        //alert(t.length);
                        if (num>20)
                        {
                                num=20;
                        }
                        for (i=0;i<num ;i++ )
                        {
                                $("body").append("<br/>" + "[" + i + "]" + t[i].text + "<br/>");
                        }
                  }
           } );

   }

</script>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.