Get a list of the albums saved in the current Spotify user’s ‘Your Music’ library.
get_my_saved_albums(
limit = 20,
offset = 0,
market = NULL,
authorization = get_spotify_authorization_code(),
include_meta_info = FALSE
)
Returns a data frame of results containing user profile information. See https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-albums/ for more information.
Optional.
Maximum number of albums to return.
Default: 20
Minimum: 1
Maximum: 50
Optional.
The index of the first albums to return.
Default: 0 (the first object). Maximum offset: 100,000. Use with
limit
to get the next set of albums.
Optional.
An ISO 3166-1 alpha-2 country code or the string "from_token"
. Provide this parameter if you want to apply Track Relinking
Required. A valid access token from the Spotify Accounts service. See the Web API authorization Guide for more details. Defaults to spotifyr::get_spotify_authorization_code()
. The access token must have been issued on behalf of the current user.
Optional. Boolean indicating whether to include full result, with meta information such as "total"
, and "limit"
. Defaults to FALSE
.