Created
October 2, 2011 21:51
-
-
Save cole-gillespie/1258019 to your computer and use it in GitHub Desktop.
how to stream a filter from ntwitter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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