0

I am using the Twitter V2 API, is it possible to avoid retrieving tweets that was already retrieved from the Twitter API. For example would it be possible to only retrieve tweets that weren't already pulled from Twitter using the V2 endpoints.

Example:

const tweets = await client.v2.userTimeline('12', { exclude: 'replies' });

Npm package: link

Coder3000
  • 119
  • 2
  • 7
  • 1
    Would using the ```since_id``` parameter work? – Coder3000 Aug 15 '22 at 14:00
  • 1
    Yes, you would use `since_id` or one of the [other parameters](https://developer.twitter.com/en/docs/twitter-api/tweets/timelines/api-reference/get-users-id-tweets) like `start_time` – Andy Piper Aug 15 '22 at 14:16

0 Answers0