Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created January 12, 2013 22:21
Show Gist options
  • Save ynonp/4520752 to your computer and use it in GitHub Desktop.
Save ynonp/4520752 to your computer and use it in GitHub Desktop.
var request = require('request');
request('http://search.twitter.com/search.json?q=israel', function(err, response, body ) {
var data = JSON.parse( body );
for ( var i=0; i < data.results.length; i++ ) {
console.log('---');
console.log( data.results[i].from_user + ':' + data.results[i].text );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment