Description Usage Arguments Value References Examples
Get Comments Threads
1 2 3 4 5 6 7 8 9 |
filter |
string; Required.
named vector of length 1
potential names of the entry in the vector:
|
part |
Comment resource requested. Required. Comma separated list of one or more of the
following: |
text_format |
Data Type: Character. Default is |
simplify |
Data Type: Boolean. Default is |
max_results |
Maximum number of items that should be returned. Integer. Optional. Default is 100.
If the value is greater than 100 then the function fetches all the results. The outcome is a simplified |
page_token |
Specific page in the result set that should be returned. Optional. |
... |
Additional arguments passed to |
Nested named list. The entry items
is a list of comments along with meta information.
Within each of the items
is an item snippet
which has an item topLevelComment$snippet$textDisplay
that contains the actual comment.
If simplify is TRUE
, a data.frame
with the following columns:
authorDisplayName, authorProfileImageUrl, authorChannelUrl, authorChannelId.value, videoId, textDisplay,
canRate, viewerRating, likeCount, publishedAt, updatedAt
https://developers.google.com/youtube/v3/docs/commentThreads/list
1 2 3 4 5 6 7 8 | ## Not run:
# Set API token via yt_oauth() first
get_comment_threads(filter = c(video_id = "N708P-A45D0"))
get_comment_threads(filter = c(video_id = "N708P-A45D0"), max_results = 101)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.