GetOldTweets3
GetOldTweets3 copied to clipboard
Not getting all the tweets.
I'm trying to get tweets from multiple Twitter accounts during a given time period. I'm only getting a fraction of the tweets that I know are going out of the three accounts in a given period. Below is the code, what am I doing wrong, or what should be changed?
=================================
accounts = ['XXX','XXX','XXX']
for screenname in accounts:
tweetCriteria = got.manager.TweetCriteria().setUsername(screenname)
.setSince("2020-09-01")
.setSince("2020-09-16")
allTweets = got.manager.TweetManager.getTweets(tweetCriteria)
for tweet in allTweets:
print (tweet.date,tweet.permalink,tweet.text)
Not sure if its related, but since about 8 hours ago, I am not getting any tweets to work, just getting the following error;
An error occured during an HTTP request: HTTP Error 404: Not Found
When I open the link in the browser as it recommends, I am seeing tweets as usual.
I wonder if twitter changed something?
I have the same problem @Greatdane . Any news?
Not sure if its related, but since about 8 hours ago, I am not getting any tweets to work, just getting the following error;
An error occured during an HTTP request: HTTP Error 404: Not Found
When I open the link in the browser as it recommends, I am seeing tweets as usual.I wonder if twitter changed something?
Not to pile on, but same thing as happening here, starting sometime today.
same thing with me!
Not sure if its related, but since about 8 hours ago, I am not getting any tweets to work, just getting the following error;
An error occured during an HTTP request: HTTP Error 404: Not Found
When I open the link in the browser as it recommends, I am seeing tweets as usual.I wonder if twitter changed something?
The same with me. I repeatedly got the 404 Error since 8 hours ago.
Not sure if its related, but since about 8 hours ago, I am not getting any tweets to work, just getting the following error;
An error occured during an HTTP request: HTTP Error 404: Not Found
When I open the link in the browser as it recommends, I am seeing tweets as usual. I wonder if twitter changed something?The same with me. I repeatedly got the 404 Error since 8 hours ago.
Might as well look at this discussion: https://github.com/Mottl/GetOldTweets3/issues/98
Use snscrape instead of GOT3