network {TMDb} | R Documentation |
Retrieve the name of a TV network.
network(api_key, id)
api_key |
Your TMDb Consumer Key. |
id |
The network ID. |
A list with the following fields:
id |
The network ID. |
name |
The name of network. |
Use this ID to search for TV shows with the discover method.
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"
network(api_key = api_key, id = 49)
## End(Not run)