powered by
Returns channel sections matching exactly one supported YouTube filter.
list_channel_sections( channel_id = NULL, section_ids = NULL, mine = FALSE, part = c("snippet", "contentDetails"), simplify = TRUE, auth = if (mine) "token" else "key", ... )
A data frame when `simplify = TRUE`; otherwise a channel-section list response.
Channel whose sections should be returned.
One or more channel-section IDs.
Set to `TRUE` to return sections for the authenticated user's channel.
Character vector of resource parts to return.
If `TRUE`, return a data frame; otherwise return the raw API response.
Authentication method, `"token"` or `"key"`. `mine = TRUE` requires `"token"`.
Additional arguments passed to [tuber_GET()].
https://developers.google.com/youtube/v3/docs/channelSections/list
if (FALSE) { list_channel_sections(channel_id = "UCRw8bIz2wMLmfgAgWm903cA") list_channel_sections(mine = TRUE, auth = "token") }
Run the code above in your browser using DataLab