Nothing
#' Get a detailed audio analysis for a single track identified by its unique Spotify ID.
#'
#' @param id The \href{https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids}{Spotify ID} for the track.
#' @param authorization Required. A valid access token from the Spotify Accounts service. See the \href{https://developer.spotify.com/documentation/general/guides/authorization-guide/}{Web API authorization guide} for more details. Defaults to \code{spotifyr::get_spotify_access_token()}
#' @return
#' Returns a data frame of results containing track audio analysis data.
#' See \url{https://developer.spotify.com/documentation/web-api/reference/tracks/get-audio-analysis/} for more information.
#' @family musicology functions
#' @export
get_track_audio_analysis <- function(id,
authorization = get_spotify_access_token()) {
base_url <- 'https://api.spotify.com/v1/audio-analysis'
params <- list(
access_token = authorization
)
url <- str_glue('{base_url}/{id}')
res <- RETRY('GET', url, query = params, encode = 'json')
stop_for_status(res)
res <- fromJSON(content(res, as = 'text', encoding = 'UTF-8'), flatten = TRUE)
res
}
#' Get audio features of tracks
#'
#' Get audio feature information for up to 100 tracks identified by their unique Spotify IDs.
#'
#' @param ids Required. A comma-separated list of the
#' \href{https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids}{Spotify IDs} of the tracks. Maximum: 100 IDs.
#' @param authorization Required. A valid access token from the Spotify Accounts service. See the \href{https://developer.spotify.com/documentation/general/guides/authorization-guide/}{Web API authorization guide} for more details. Defaults to \code{spotifyr::get_spotify_access_token()}
#' @return
#' Returns a data frame of results containing track audio features data.
#' See \url{https://developer.spotify.com/documentation/web-api/reference/tracks/get-several-audio-features/} for more information.
#' @family musicology functions
#' @export
get_track_audio_features <- function(ids,
authorization = get_spotify_access_token()
) {
assertthat::assert_that(
length(ids) <= 100,
msg = "Too long ids vector. The maximum length of the length of the ids vector is 100."
)
base_url <- 'https://api.spotify.com/v1/audio-features'
params <- list(
access_token = authorization,
ids = paste0(ids, collapse = ',')
)
res <- RETRY('GET', base_url, query = params, encode = 'json')
stop_for_status(res)
features <- fromJSON(content(res, as = 'text', encoding = 'UTF-8'), flatten = TRUE)
features <- features$audio_features %>% as_tibble()
features
}
#' Get Spotify catalog information for a single track identified by its unique Spotify ID.
#'
#' @param id The \href{https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids}{Spotify ID} for the track.
#' @param market Optional. \cr
#' An ISO 3166-1 alpha-2 country code or the string \code{"from_token"}. Provide this parameter if you want to apply \href{https://developer.spotify.com/documentation/general/guides/track-relinking-guide/}{Track Relinking}
#' @param authorization Required. A valid access token from the Spotify Accounts service. See the \href{https://developer.spotify.com/documentation/general/guides/authorization-guide/}{Web API authorization guide} for more details. Defaults to \code{spotifyr::get_spotify_access_token()}
#' @return
#' Returns a data frame of results containing track data. See \url{https://developer.spotify.com/documentation/web-api/reference/tracks/get-several-tracks/} for more information.
#' @family track functions
#' @export
get_track <- function(id,
market = NULL,
authorization = get_spotify_access_token()) {
base_url <- 'https://api.spotify.com/v1/tracks'
if (!is.null(market)) {
validate_market(market)
}
params <- list(
market = market,
access_token = authorization
)
url <- str_glue('{base_url}/{id}')
res <- RETRY('GET', url,
query = params,
encode = 'json')
stop_for_status(res)
res <- fromJSON(content(res, as = 'text', encoding = 'UTF-8'),
flatten = TRUE)
res
}
#' Get Spotify catalog information for a single track identified by its unique Spotify ID.
#'
#' @param ids The \href{https://developer.spotify.com/documentation/web-api/#spotify-uris-and-ids}{Spotify ID} for the track.
#' @param market Optional. \cr
#' An ISO 3166-1 alpha-2 country code or the string \code{"from_token"}.
#' Provide this parameter if you want to apply
#' \href{https://developer.spotify.com/documentation/general/guides/track-relinking-guide/}{Track Relinking}
#' @param authorization Required. A valid access token from the Spotify Accounts service. See the \href{https://developer.spotify.com/documentation/general/guides/authorization-guide/}{Web API authorization guide} for more details. Defaults to \code{spotifyr::get_spotify_access_token()}
#' @param include_meta_info Optional. Boolean indicating whether to include full result, with meta information such as \code{"total"}, and \code{"limit"}. Defaults to \code{FALSE}.
#' @return
#' Returns a data frame of results containing track data.
#' See \url{https://developer.spotify.com/documentation/web-api/reference/tracks/get-several-tracks/} for more information.
#' @family track functions
#' @export
get_tracks <- function(ids,
market = NULL,
authorization = get_spotify_access_token(),
include_meta_info = FALSE) {
base_url <- 'https://api.spotify.com/v1/tracks'
if (!is.null(market)) {
validate_market(market)
}
params <- list(
ids = paste(ids, collapse = ','),
market = market,
access_token = authorization
)
res <- RETRY('GET', base_url, query = params, encode = 'json')
stop_for_status(res)
res <- fromJSON(content(res, as = 'text', encoding = 'UTF-8'),
flatten = TRUE)
if (!include_meta_info) {
res <- res$tracks
}
res
}
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.