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
找不到电影或节目?登录并创建它吧。
Travis Bell 的回复
于 2014 年 12 月 28 日 10:18上午
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.