get_playlist_tracks {tinyspotifyr} | R Documentation |
Get full details of the tracks of a playlist owned by a Spotify user.
Description
Get full details of the tracks of a playlist owned by a Spotify user.
Usage
get_playlist_tracks(
playlist_id,
fields = NULL,
limit = 100,
offset = 0,
market = NULL,
authorization = get_spotify_access_token(),
include_meta_info = FALSE
)
Arguments
playlist_id |
Required. The Spotify ID for the playlist. |
fields |
Optional. Filters for the query: a comma-separated list of the fields to return. If omitted, all fields are returned. For example, to get just the playlist’s creation date and album information: |
limit |
Optional. |
offset |
Optional. |
market |
Optional. |
authorization |
Required. A valid access token from the Spotify Accounts service. See the Web API authorization guide for more details. Both Public and Private playlists belonging to any user are retrievable on provision of a valid access token. Defaults to |
include_meta_info |
Optional. Boolean indicating whether to include full result, with meta information such as |
Value
Returns a data frame of results containing user profile information. See https://developer.spotify.com/documentation/web-api/reference/users-profile/get-current-users-profile/ for more information.