Get statistics on all the videos in a Channel
Usage
get_all_channel_video_stats(channel_id = NULL, mine = FALSE, ...)
Arguments
- channel_id
Character. Id of the channel
- mine
Boolean. TRUE if you want to fetch stats of your own channel. Default is FALSE.
- ...
Additional arguments passed to tuber_GET
.
Value
nested named list with top element names:
kind, etag, id,
snippet (list of details of the channel including title)
, statistics (list of 5)
If the channel_id
is mistyped or there is no information, an empty list is returned
Examples
if (FALSE) { # \dontrun{
# Set API token via yt_oauth() first
get_all_channel_video_stats(channel_id="UCxOhDvtaoXDAB336AolWs3A")
get_all_channel_video_stats(channel_id="UCMtFAi84ehTSYSE9Xo") # Incorrect channel ID
} # }