desmondmorris / node-twitter

Client library for the Twitter REST and Streaming API's.
https://www.npmjs.com/package/twitter
MIT License
1.27k stars 237 forks source link

Does statuses/user_timeline not support tweet_mode=extended #304

Closed kylegalbraith closed 6 years ago

kylegalbraith commented 6 years ago

I tried the following:

this.twitterClient.get('statuses/user_timeline.json?tweet_mode=extended', {});

But there is no full_text or extended_tweet property coming back on the response, what am I missing?

kylegalbraith commented 6 years ago

For anyone that comes looking, it needs to be included in the payload object.

this.twitterClient.get('statuses/user_timeline.json', { tweet_mode: 'extended' });