ryt_get_playlists {rytstat}R Documentation

Get playlist from 'YouTube API'

Description

Get playlist from 'YouTube API'

Usage

ryt_get_playlists(
  part = c("contentDetails", "id", "localizations", "player", "snippet", "status"),
  fields = NULL
)

Arguments

part

parts of playist metadata, see API documentation.

fields

Fields of video metadata, see API documentation.

Details

Parts and fields part:

parts and fields details

Value

tibble with playlist metadata

Examples

## Not run: 
pl <- ryt_get_playlists(
    part = c('id', 'contentDetails', 'snippet'),
    fields = 'items(id,snippet/channelId,snippet/title,contentDetails/itemCount)'
 )

## End(Not run)

[Package rytstat version 0.3.2 Index]