現在流行的東西微博是網上玩的比較火的東西,今天我們就來利用新浪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>