Closed kylegalbraith closed 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?
full_text
extended_tweet
For anyone that comes looking, it needs to be included in the payload object.
this.twitterClient.get('statuses/user_timeline.json', { tweet_mode: 'extended' });
I tried the following:
But there is no
full_text
orextended_tweet
property coming back on the response, what am I missing?