Hi, I’m using node.js and here is my code:
client.get('users/search', {q: 'node.js & filter:India'}, function(error, users, response){
if(error) throw error;
//console.log(response); // Raw response object.
fs.appendFile("tweets.json", JSON.stringify(users, null, ' '));
});
While {q: ‘node.js’} works I’m not able to filter users matching ‘India’ as result - This currently returns empty json.
Appreciate any help.