GetOldTweets3 icon indicating copy to clipboard operation
GetOldTweets3 copied to clipboard

Not getting all the tweets.

Open greencoder88 opened this issue 4 years ago • 7 comments

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)

greencoder88 avatar Sep 17 '20 15:09 greencoder88

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?

Greatdane avatar Sep 18 '20 00:09 Greatdane

I have the same problem @Greatdane . Any news?

awurman avatar Sep 18 '20 00:09 awurman

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.

inactivist avatar Sep 18 '20 00:09 inactivist

same thing with me!

lewisj34 avatar Sep 18 '20 00:09 lewisj34

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.

caiyishu avatar Sep 18 '20 03:09 caiyishu

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

tahmidrashid avatar Sep 21 '20 03:09 tahmidrashid

Use snscrape instead of GOT3

aniketkapdule avatar May 27 '21 09:05 aniketkapdule