Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.