Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
There are maximums not sure how may requests of 1000 you can do a day.Follows lookup
The follows lookup endpoints enable you to explore and analyze relationships between users, which is sometimes called network analysis. Specifically, there are two REST endpoints that return user objects representing who a specified user is following, or who is following a specified user.
You can authenticate this endpoint with either OAuth 1.0a User Context, App only, or OAuth 2.0 Authorization Code with PKCE. You can request up to 1,000 users per request, and pagination tokens will be provided for paging through large sets of results.
I doubt you can tap a list of Elmo Mush's followers
so there aren't even services that have a large database from twitter?There are maximums not sure how may requests of 1000 you can do a day.
GET /2/users/:id/followers
developer.twitter.com
I doubt you can tap a list of Elmo Mush's followers
You didn't have to necessarily mention musk lol. There are tons of accounts of Twitter accounts with millions of followers/subscribersI mean, can I somehow collect subscribers from an account that has a million of them?
maybe there are services that can do this. Who have a partnership with Twitter and can take data from Twitter in any quantity and resell it?
well, how can I scrape at least from an account with 1 million subscribers?You didn't have to necessarily mention musk lol. There are tons of accounts of Twitter accounts with millions of followers/subscribers
for example, there is an account with 1 million subscribers, is there any way to collect all these subscribers from this account?Just use the twitter api and program it or hire a developer to do it.
I used nodejs for a posting bot
That link has sample code
buying what is called data on the inner webs is usually a lot of trash
--when you do it yourself you will know what you get is real.
You can't scrape off Twitter's webpages unless you have a webdriver based bot that can infinite scroll and copy incrementally. Also, there may only be $x number of followers displayed on the web pages --like 500 or something.
try a search ask AIso there aren't even services that have a large database from twitter?
read the documentation of the api 1000 Then 1000 tokens that return the next page? There are daily limits also that may take a while.for example, there is an account with 1 million subscribers, is there any way to collect all these subscribers from this account?
Follows lookup
The follows lookup endpoints enable you to explore and analyze relationships between users, which is sometimes called network analysis. Specifically, there are two REST endpoints that return user objects representing who a specified user is following, or who is following a specified user.
You can authenticate this endpoint with either OAuth 1.0a User Context, App only, or OAuth 2.0 Authorization Code with PKCE. You can request up to 1,000 users per request, and pagination tokens will be provided for paging through large sets of results.
max_results Optional | integer | The maximum number of results to be returned per page. This can be a number between 1 and the 1000. By default, each page will return 100 results. |
pagination_token Optional | string | Used to request the next page of results if all results weren't returned with the latest request, or to go back to the previous page of results. To return the next page, pass the next_token returned in your previous response. To go back one page, pass the previous_token returned in your previous response. |