search_fullarchive {rtweet} | R Documentation |
Premium Twitter searches
Description
Search 30day or fullarchive premium products. There is a limit of 5000 tweets and 25000 for the fullarchive and 30day endpoints respectively. In addition, there are some limits in the number of requests that are possible on a certain amount of time, this have already been taken into account. See the info provided by Twitter and the "Developer Account" section.
Usage
search_fullarchive(
q,
n = 100,
fromDate = NULL,
toDate = NULL,
continue = NULL,
env_name = NULL,
premium = FALSE,
safedir = NULL,
parse = TRUE,
token = NULL
)
search_30day(
q,
n = 100,
fromDate = NULL,
toDate = NULL,
env_name = NULL,
continue = NULL,
premium = FALSE,
safedir = NULL,
parse = TRUE,
token = NULL
)
Arguments
q |
Search query on which to match/filter tweets. See details for information about available search operators. |
n |
Desired number of results to return. Results are downloaded
in pages when 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 You are not guaranteed to get exactly |
fromDate |
Oldest date-time (YYYYMMDDHHMM) from which tweets should be searched for. |
toDate |
Newest date-time (YYYYMMDDHHMM) from which tweets should be searched for. |
continue |
A character string with the next results of a query. You
must make the exact same query as the original, including |
env_name |
Name/label of developer environment to use for the search. |
premium |
A logical value if the environment is paid (TRUE) or
sandboxed, the default (FALSE). It limits the number of results retrieved so the number
of API queries needed to retrieve |
safedir |
Name of directory to which each response object should be saved. If the directory doesn't exist, it will be created. If NULL (the default) then a dir will be created in the current working directory. To override/deactivate safedir set this to FALSE. |
parse |
If |
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 |
Details
Note: The env_name
must match the ones you set up for the token you are using.
Value
A tibble data frame of Twitter data.
Developer Account
Users must have an approved developer account and an active/labeled environment to access Twitter's premium APIs. For more information, to check your current Subscriptions and Dev Environments, or to apply for a developer account visit https://developer.twitter.com.
Search operators
Note: Bolded operators ending with a colon should be immediately
followed by a word or quoted phrase (if appropriate)–e.g., lang:en
Keyword
-
"" ~~ match exact phrase
-
# ~~ hashtag
-
@ ~~ at mentions)
-
url: ~~ found in URL
-
lang: ~~ language of tweet
Accounts of interest
-
from: ~~ authored by
-
to: ~~ sent to
-
retweets_of: ~~ retweet author
Tweet attributes
-
is:retweet ~~ only retweets
-
has:mentions ~~ uses mention(s)
-
has:hashtags ~~ uses hashtags(s)
-
has:media ~~ includes media(s)
-
has:videos ~~ includes video(s)
-
has:images ~~ includes image(s)
-
has:links ~~ includes URL(s)
-
is:verified ~~ from verified accounts
Geospatial
-
bounding_box:[west_long south_lat east_long north_lat] ~~ lat/long coordinates box
-
point_radius:[lon lat radius] ~~ center of search radius
-
has:geo ~~ uses geotagging
-
place: ~~ by place
-
place_country: ~~ by country
-
has:profile_geo ~~ geo associated with profile
-
profile_country: ~~ country associated with profile
-
profile_region: ~~ region associated with profile
-
profile_locality: ~~ locality associated with profile
See Also
tweet_search_recent()
, tweet_search_all()
, rtweet-deprecated