Does anyone know if it's possible to get a user stream with the include_entities using ntwitter and Meteor? ntwitter seems to be working great for pulling a user stream, otherwise.
Here is what I am using, and what I have tried:
//this is working fine for bringing in a user stream
twit.stream('user', {screen_name:'brentgarner'}, function(stream) {
stream.on('data', function (data) {
console.log(data);
}
});
I have tried this with no luck (404 error):
twit.stream('statuses/user_timeline', {screen_name:'brentgarner', include_entities: 1}, function(stream) {
stream.on('data', function (data) {
console.log(data);
}
});
You can see from that first working query that I am getting the tweet back, and it recognizes that there is entity data there...
entities: { hashtags: [], urls: [], user_mentions: [], media: [ [Object] ] },
But it's not expanded... anyone have a solution for this?
Thanks