Hello,
I need some help with your api. I constantly get a connection timed out error. Below is my code, I'm trying to just output the raw json respone so i can work my way from there.
$header_opt = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept: application/json\r\n" .
"Content-Type: application/json\r\n"
)
);
$headers = stream_context_create($header_opt);
$rawjson = file_get_contents('http://api.themoviedb.org/3/movie/tt0076759?api_key=myapikey', false, $headers);
$cleansjon = json_decode($rawjson);
echo $cleansjon;
And this is the error I get.
Warning: file_get_contents(http://api.themoviedb.org/3/movie/tt0076759?api_key=myapikey) [function.file-get-contents]: failed to open stream: Connection timed out in /*///*/public_html/index.php on line 11
I hope that someone can help me with this.
找不到电影或节目?登录并创建它吧。
Tony0892 的回复
于 2013 年 01 月 21 日 9:53上午
Bumb...
I still dont have an answer to my question above. Is there anyone that can help me with my problem ?
Travis Bell 的回复
于 2013 年 01 月 21 日 10:26上午
Hi Tony,
Unfortunately, I don't have a clue why you're seeing this. You could try using one of the PHP libraries just to see if you see the same behaviour. If you do, then I would guess it's something more server related than anything. If not, you can pick apart the code to see what the libraries do different than you are.