You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
It seems like when using
fetchSearchTweets
example:await scraper.fetchSearchTweets('elonmusk', 25)
There is a limit of fetching 20 tweets each fetch?
The text was updated successfully, but these errors were encountered: