Skip to content

Instantly share code, notes, and snippets.

@shuhblam
Created October 2, 2011 21:51
Show Gist options
  • Save shuhblam/1258019 to your computer and use it in GitHub Desktop.
Save shuhblam/1258019 to your computer and use it in GitHub Desktop.
how to stream a filter from ntwitter
t.stream('statuses/filter', {'locations':'-122.75,36.8,-121.75,37.8,-74,40,-73,41'} , function( stream ) {
stream.on('data', function ( data ) {
console.log( data );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment