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.
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por Tony0892
el 21 de enero de 2013 a las 09:53
Bumb...
I still dont have an answer to my question above. Is there anyone that can help me with my problem ?
Contestado por Travis Bell
el 21 de enero de 2013 a las 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.