- 授权协议: 未知
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://jquery-howto.blogspot.com/2009/04/jquery-twitter-api-plugin.html
软件介绍
jTwitter(jQuery Twitter API)利用这个jQuery插件,给定一个Twitter用户名,就能够获取包含该用户详细信息的javascript对象包 括:followers&following counts,full name,homepage URL等。
// I am query data for "jQueryHowto" user
$.jTwitter('jQueryHowto', function(posts){
//Callback functn with the user data
$('#profile input.url').val(posts[0].user.url);
$('#profile #avatar').html('<img src="'
+ posts[0].user.profile_image_url + '" />');
});
