movie_changes: Retrieve movie changes.

Description Usage Arguments Details Value Author(s) References Examples

View source: R/movie_changes.R

Description

Get the changes for a specific movie id.

Usage

1
movie_changes(api_key, id, start_date = NA, end_date = NA)

Arguments

api_key

Your TMDb Consumer Key.

id

The movie ID.

start_date

The date starting from which to search. Format YYYY-MM-DD.

end_date

The date until which to search. Format YYYY-MM-DD.

Details

Changes are grouped by key, and ordered by date in descending order. By default, only the last 24 hours of changes are returned. The maximum number of days that can be returned in a single request is 14. The language is present on fields that are translatable.

Value

A list with the following field:

changes

The type and the object of the change.

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"

movie_changes(api_key = api_key, id = 28)

## End(Not run) 

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

Related to movie_changes in TMDb...