Hi
I’m using GET statuses/user_timeline like this:

curl --request GET --url 'https://api.twitter.com/1.1/statuses/user_timeline.json?user_id=11111111&count=200&exclude_replies=true&include_rts=false&max_id=111111111111' --header 'authorization: Bearer AAAAAAAAAAAAAAAAAAAAAA*******U' >> output.txt

but for truncated tweets in payload there is no extended_tweet field for extracting full_text. how can I get full text for extended tweets by this method? I didn’t find any option here: https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline

I find out that tweet_mode=extended works. here is the explanations:

https://developer.twitter.com/en/docs/tweets/tweet-updates#rendering-modes

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.