jstter: Retrieve statuses of a given Twitter user

Recommend this page to a friend!
     
  Info   Example   View files Files   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 483 All time: 62 This week: 3Up
Version License JavaScript version Categories
jstter 1.0BSD License1Social networking, Web services
Description 

Author

This object can be used to retrieve statuses of a given Twitter user.

It sends an HTTP request to the Twitter API Web server and retrieves the information about the statuses of a given user.

The object calls a given callback function and Twitter API server returns the statuses information.

Picture of Cesar D. Rodas
Name: Cesar D. Rodas <contact>
Classes: 1 package by
Country: Paraguay Paraguay
Age: 36
All time rank: 511 in Paraguay Paraguay
Week rank: 6 Up1 in Paraguay Paraguay Equal

Example

<html> <head> <title>jstter simple class</title> <script src="./jstter.js"></script> <script> var obj = new jstter.twitter(); obj.each(function(tweet) { //alert(tweet.text); }); //obj.users(['crodas', 'gallir', 'chelun']); //obj.users(['crodas', 'gallir', 'chelun']); //obj.query("paola bracho"); obj.users('crodas'); obj.render("container", "model"); obj.fetch(); setInterval(function() { obj.fetch() }, 15000); </script> </head> <body> <table> <thead> <tr> <td>Who?</td> <td>What?</td> </tr> </thead> <tbody id="container"> </tbody> </table> <table style="display:none"> <tr id="model"> <td><b>@#from_user</b></td> <td><em>#text</em></td> </tr> </table> </body> </html>

  Files folder image Files (1)  
File Role Description
Accessible without login Plain text file index.html Example Simple Example

 Version Control Unique User Downloads Download Rankings  
 100%
Total:483
This week:0
All time:62
This week:3Up
User Comments (1)