fetchSearchTweets limits
It seems like when using fetchSearchTweets example:
await scraper.fetchSearchTweets('elonmusk', 25)
There is a limit of fetching 20 tweets each fetch?
That function returns a single page of results, but the number of results per page is undefined. It should return a cursor you can use to get more data.
The fetch functions are mostly intended for use in environments that don't support async generators — I recommend using searchTweets instead so pagination is handled automatically.
That function returns a single page of results, but the number of results per page is undefined. It should return a cursor you can use to get more data.
The fetch functions are mostly intended for use in environments that don't support async generators — I recommend using searchTweets instead so pagination is handled automatically.
Yeah I figured the cursor part out 👍
But as of right now I have to use fetchSearchTweets since searchTweets doesn't work with reply's right now.