Search for Twitter users. The Twitter API limits the results to at most 1,000 users.
Arguments
- q
As string providing the search query. Try searching by interest, full name, company name, or location. Exact match searches are not supported.
- n
Desired number of results to return. Results are downloaded in pages when
n
is large; the default value will download a single page. Setn = Inf
to download as many results as possible.The Twitter API rate limits the number of requests you can perform in each 15 minute period. The easiest way to download more than that is to use
retryonratelimit = TRUE
.You are not guaranteed to get exactly
n
results back. You will get fewer results when tweets have been deleted or if you hit a rate limit. You will get more results if you ask for a number of tweets that's not a multiple of page size, e.g. if you requestn = 150
and the page size is 200, you'll get 200 results back.- parse
If
TRUE
, the default, returns a tidy data frame. UseFALSE
to return the "raw" list corresponding to the JSON returned from the Twitter API.- token
Use this to override authentication for a single API call. In many cases you are better off changing the default for all calls. See
auth_as()
for details.- verbose
Show progress bars and other messages indicating current progress?
See also
Other users:
as_screenname()
,
lists_subscribers()
,
lookup_users()
Examples
if (auth_has_default()) {
users <- search_users("#rstats", n = 300)
users
# latest tweet from each user
tweets_data(users)
}