Skip to contents

A wrapper function that gets the names of all songs contained in one or more of a user's owned and saved public or collaborative playlists. By default, all songs from valid playlists are returned, but playlists can also be specified by name.

Usage

get_playlists_songs(playlist_names = NULL)

Arguments

playlist_names

a character vector containing the playlist names, defaults to all

Value

list containing a vector of song names from the playlists

Examples

if (FALSE) {
get_playlists_songs()
get_playlists_songs('night drives')
get_playlists_songs(c('night drives', 'boss rush'))
}