Can anyone please share me the idea to retrieve the deleted and Edited tweet list(user timeline) after the given time? using twitter rest API.
Asked
Active
Viewed 721 times
1 Answers
0
AFAIK this isn't part of the REST API, I think you have 3 choices here.
- Avoid permanently caching things like timelines and tweets, and refetch timelines which will be updated after deletes.
- Periodically refetch timelines and process the deltas for overlapping time ranges.
- use the streaming API, which unfortunately would introduce a huge amount of complexity https://dev.twitter.com/streaming/overview/messages-types#status_deletion_notices_delete

Yuri Schimke
- 12,435
- 3
- 35
- 69