Description Usage Arguments Source Examples
Get details about videos
1 | getVideoDetails(id, ...)
|
id |
character. One or more Video IDs. |
... |
arguments to be passed by the source endpoint parameters. |
“/videos/{id}
”
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
# get details of a single video:
getVideoDetails(id = "18002566")
# multiple videos by lapply:
lapply(c("18002566", "17139196"), function(v) getVideoDetails(id = v))
# get multiple videos by for loop:
videos <- list()
for (v in c("18002566", "17139196")) {
videos[[v]] <- getVideoDetails(id = v)
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.