Until how many days ago can I get a tweet on Twitter API?

Asked 2 years ago, Updated 2 years ago, 59 views

Using C#(Core Tweet), we are creating a tool to output Twitter search results to Excel.

Twitter APIs should only allow you to retrieve tweets from the past week, but rarely do you get tweets from about 10 days ago.
I can't find such a description when I look into it, but why is that?

[Additional note]
https://dev.twitter.com/rest/reference/get/search/tweets

c# twitter

2022-09-30 11:40

1 Answers

Twitter api should only be able to get tweets from the past week.

If you have a source, please let me know.

GET states/home_timeline

Up to 800 Tweets are obtainable on the home timeline.

There are 800 home timelines.

GET states/user_timeline

This method can only return up to 3,200 of a user's most recent Tweets.

There are 3200 tweets from a particular user.


2022-09-30 11:40

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.