R/person_popular.R

Defines functions person_popular

Documented in person_popular

person_popular <-
function(api_key, page=1){

    url <- fromJSON(GET(url=paste("http://api.themoviedb.org/3/person/popular?api_key=", 
                                      api_key, "&page=", page, sep=""))$url)
    
    return(url)
    
}

Try the TMDb package in your browser

Any scripts or data that you put into this service are public.

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