how to get the movie id from search i list the code like this
$jsonfile1 = 'http://api.themoviedb.org/3/search/movie?api_key=###&query=#### $data1 = json_decode(file_get_contents($jsonfile1)); $ids = $data1->page[0]->results[0]->id;
but i didn't get the movie's id, please help
Não consegue encontrar um certo filme ou série? Inicie sessão e adicione-o.
Deseja classificar ou adicionar este item a uma lista?
Ainda não é um membro?
Resposta de Travis Bell
em 28 dezembro 2014 às 10:18 AM
Hi redorahman,
What language are you programming in?
I often recommend taking a look one of the available libraries and not only using them but even if you choose not to, you can often gleam some good info about how they're using the API by looking at the code.
Cheers.