Learn R Programming

TMDb (version 1.1)

movie_alternative_title: Retrieve alternative titles for movies.

Description

Get the alternative titles for a specific movie id.

Usage

movie_alternative_title(api_key, id, country = NA, append_to_response = NA)

Arguments

api_key

Your TMDb Consumer Key.

id

The movie ID.

country

A ISO 3166-1 code.

append_to_response

Comma separated, any movie method.

Value

A list with the following fields:

id

The movie ID.

titles

The alternative titles of the movie.

References

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

Examples

Run this code
# 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"

movie_alternative_title(api_key = api_key, id = 550, country = "TW")
# }

Run the code above in your browser using DataLab