Nothing
#' Fetch Twitter OAuth token
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#' Please use [auth_get()] instead.
#'
#' @family tokens
#' @export
get_token <- function() {
lifecycle::deprecate_warn("1.0.0", "get_token()", "auth_get()")
auth_get()
}
#' @export
#' @rdname get_token
get_tokens <- function() {
lifecycle::deprecate_warn("1.0.0", "get_tokens()", "auth_get()")
auth_get()
}
#' Create custom Twitter OAuth token
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#' By default, `create_token()` does three things: it creates an authentication
#' "token", sets it as the default token for the current session, and save it
#' to disk to make it the default for future sessions.
#'
#' These three components have now been split up into three separate pieces:
#' use [rtweet_user()]/[rtweet_app()]/[rtweet_bot()] to create the token,
#' [auth_as()] to make it the default for this session, and [auth_save()] to
#' use it in future sessions. See `vignette("auth", package = "rtweet")` for full details.
#'
#' @param app Name of user created Twitter application
#' @param consumer_key,consumer_secret App API key and secret.
#' @param access_token,access_secret Access token and secret.
#' @param set_renv Should the token be cached?
#' @return Twitter OAuth token(s) (Token1.0).
#' @keywords internal
#' @family tokens
#' @export
create_token <- function(app = "mytwitterapp",
consumer_key = NULL,
consumer_secret = NULL,
access_token = NULL,
access_secret = NULL,
set_renv = TRUE) {
lifecycle::deprecate_warn(
when = "1.0.0",
what = "create_token()",
details = "See vignette('auth', package = 'rtweet') for details"
)
if (!is.null(access_token) && !is.null(access_secret)) {
token <- rtweet_bot(consumer_key, consumer_secret, access_token, access_secret)
} else {
token <- rtweet_user(consumer_key, consumer_secret)
}
if (set_renv) {
auth_save(token, "create_token")
}
auth_as(token)
invisible(token)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.