#' Get all videos in the given playlist
#'
#' @param playlist_id Character containing the YouTube playlist ID.
#' @inheritDotParams tuber::get_playlist_items -filter
#'
#' @importFrom tuber get_playlist_items
#'
#' @seealso \code{\link[tuber::get_playlist_items]{tuber::get_playlist_items()}}
#' for additional arguments
#' @export
get_playlist_videos <- function(playlist_id, ...) {
tuber::get_playlist_items(
filter = c(playlist_id = playlist_id),
...
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.