Is it possible to set a filter/filter property in the search query for Twitter API?

时间:2016-07-11 21:22:41

标签: javascript node.js twitter twitter4j

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.

0 个答案:

没有答案