1

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.

Vinod Kumar
  • 408
  • 4
  • 18

1 Answers1

0

AFAIK this isn't part of the REST API, I think you have 3 choices here.

  1. Avoid permanently caching things like timelines and tweets, and refetch timelines which will be updated after deletes.
  2. Periodically refetch timelines and process the deltas for overlapping time ranges.
  3. 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