R/get_comments_by_id.R

#' Get comments for one video based on its video ID.
#'
#' @param x A string
#' @return All the comments on the video with video ID. of \code{x}

get_comments_by_id <- function(x){
  commentData <- get_all_comments(video_id = x)
  print(commentData)
}
Gchen0124/YouTubR documentation built on May 8, 2019, 1:54 p.m.