configuration: Get the system wide configuration information.

Description Usage Arguments Details Value Author(s) References Examples

View source: R/configuration.R

Description

This method currently holds the data relevant to building image URLs as well as the change key map.

Usage

1
configuration(api_key)

Arguments

api_key

Your TMDb Consumer Key.

Details

To build an image URL, you will need 3 pieces of data. The base_url, size and file_path. Simply combine them all and you will have a fully qualified URL.

Value

The data provided with this method is required for building full image URLs, or getting a list of available image sizes.

Author(s)

Andrea Capozio

References

https://developers.themoviedb.org/3/getting-started

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## 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"

configuration(api_key = api_key)

## End(Not run)

TMDb documentation built on March 17, 2020, 1:06 a.m.

Related to configuration in TMDb...