Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter streaming API not return full tweets

Tags:

tweepy

tweets

I used tweepy to write the code to streaming tweets, but it seems the tweets were truncated and the long tweets I got are not full, they are end with ...

Is there any way that I could streaming the full long tweets?

like image 250
tienan li Avatar asked Feb 12 '26 08:02

tienan li


1 Answers

Add this parameter to your request: tweet_mode=extended When parsing each tweet, use full_text instead of text.

It's documented here: https://developer.twitter.com/en/docs/tweets/tweet-updates.html

like image 176
Jonas Avatar answered Feb 23 '26 03:02

Jonas