Here's the query code:
app.get('/weather', function(req, res){
T.get('search/tweets', { q: 'storm', count: 1000 }, function(err, data, response) {
//don't want to filter here
});
});
It's fully functionally(returning tweets), but there's a lot of tweets that don't have coordinates which are useless to me. Is there a property or something that will allow me to query the above but only include tweets that have coordinates that are != null?
I need to do this as a setting for the query, not filter it after I get the results.
Thanks in advance!
Twitter API 1.1, Node J.S.