Custom Twitter Feed in Webpage using Twitter API and Javascript
You can easily integrate live tweets of user/company using Twitter API. For this purpose, use the following two javascripts. http://twitter.com/javascripts/blogger.js http://twitter.com/statuses/user_timeline/your_user_or_company.json?callback=twitterCallback2&count=3 Please note that these both javascripts will need to be inserted before the closing body tag (</body>). The first script has two functions who are responsible for processing the JSON returned by the second script. You will need to replace "your_user_or_company.json" of second javascript with your desired user or company name what you want to get the tweets from. For example, if you want to get tweets from google on twitter then the your javascript url will be http://twitter.com/statuses/user_timeline/google.json?callback=twitterCallback2&count=3 Here 'twitterCallback2' is the callback function where the data will be thrown to process further once we get data by the above url ...