使用json/jquery获取twitter提要

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用json/jquery获取twitter提要相关的知识,希望对你有一定的参考价值。

Note: replace "USERNAME" with your own twitter username.
This is using cycle plugin with easing which is applied after the tweets are populated.
  1. function getTwitter(){
  2.  
  3. var panel = $('#twitter_feed');
  4. var tweet = '';
  5.  
  6. if( panel.length > 0 ) {
  7.  
  8. $.ajax({
  9. type : 'GET',
  10. dataType : 'jsonp',
  11. url : 'http://search.twitter.com/search.json?q=USERNAME',
  12.  
  13. success : function(tweets) {
  14.  
  15. $.each(tweets.results, function(i) {
  16.  
  17. var created = tweets.results[i].created_at;
  18. var text = tweets.results[i].text;
  19. var href = 'http://twitter.com/USERNAME/status/'+tweets.results[i].id;
  20. var img = tweets.results[i].profile_image_url;
  21.  
  22. tweet = '<span class="tweet"><img src="' + img + '" /><a href="' + href + '" rel="nofollow">' + text.substr(0, 45) + '..</a></span>';
  23. panel.append(tweet);
  24.  
  25. });
  26. //let's do fade in effect
  27. $('#twitter_feed').cycle({
  28. fx: 'scrollDown',
  29. speedIn: 2000,
  30. speedOut: 500,
  31. easeIn: 'easeOutBounce',
  32. easeOut: 'easeInBack',
  33. delay: 7000
  34. });
  35. }//end each
  36. });//end ajax
  37. }//end if
  38.  
  39. }

以上是关于使用json/jquery获取twitter提要的主要内容,如果未能解决你的问题,请参考以下文章

iPad 上的 Twitter 提要 - 页面在滚动和灰色边框上移动

iOS 应用程序中的 Twitter 提要 - 我如何仅从我自己的帐户获取列表提要 [无需应用用户登录 Twitter]

来自 Twitter 的 PHP XML 提要使用情况

从 twitter api 获取数据

仅按语言过滤 Twitter 提要

使用 Tweepy 搜索 Twitter 提要