tv_videos {TMDb} | R Documentation |
Get the videos that have been added to a TV series (trailers, opening credits, etc...).
tv_videos(api_key, id, language = NA)
api_key |
Your TMDb Consumer Key. |
id |
The TV series ID. |
language |
A ISO 639-1 code. |
A list with the following fields:
id |
The TV show ID. |
results |
The videos associated with the TV show. |
Andrea Capozio
https://developers.themoviedb.org/3/getting-started
## Not run:
## An example of an authenticated request,
## where api_key is fictitious.
## You can obtain your own at https://www.themoviedb.org/documentation/api
api_key <- "key"
tv_videos(api_key = api_key, id = 1396)
## End(Not run)