Retrieving and Sending Tweets in Node.js
Learn about the function that is used to pass data and how the locations of earthquakes can be filtered through keywords.
We'll cover the following...
We’re using the streaming Twitter client for Node.js twit
to connect to Twitter and search for tweets. From now on, all the code in the server will happen inside the onConnect
function, because it assumes that a connection to a WebSocket is already established.
Let’s initialize the stream of tweets in index.js
:
Press + to interact
var stream = T.stream('statuses/filter',{track: 'earthquake',locations: []});
Filtering the earthquake location
This tells our Twit
instance T
to start streaming Twitter statuses, filtered by the keyword “earthquake.” This is, of course, very generic and not directly related to the earthquakes happening right now. However, we should take note of the empty locations array. This is an array of latitude and ...