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
Nemůžete nalézt film nebo seriál? Přihlaste se pro jeho vytvoření.
Want to rate or add this item to a list?
Not a member?
Odpověď od Travis Bell
28.12.2014 v 10:18 DOP.
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.