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.
Nie możesz znaleźć filmu lub serialu? Zaloguj się, aby go utworzyć.
Want to rate or add this item to a list?
Not a member?
Odpowiedź użytkownika Tony0892
21 stycznia 2013 o godz. 9:53AM
Bumb...
I still dont have an answer to my question above. Is there anyone that can help me with my problem ?
Odpowiedź użytkownika Travis Bell
21 stycznia 2013 o godz. 10:26AM
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.