Description Usage Arguments Value References Examples
View source: R/get_video_details.R
Get details such as when the video was published, the title, description, thumbnails, category etc.
1 | get_video_details(video_id = NULL, part = "snippet", ...)
|
video_id |
Comma separated list of IDs of the videos for which details are requested. Required. |
part |
Comma-separated list of video resource properties requested. Options include:
|
... |
Additional arguments passed to |
list. If part is snippet, the list will have the following elements:
id
(video id that was passed), publishedAt, channelId, title, description, thumbnails,
channelTitle, categoryId, liveBroadcastContent, localized, defaultAudioLanguage
https://developers.google.com/youtube/v3/docs/videos/list
1 2 3 4 5 6 7 8 | ## Not run:
# Set API token via yt_oauth() first
get_video_details(video_id = "yJXTXN4xrI8")
get_video_details(video_id = "yJXTXN4xrI8", part = "contentDetails")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.