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.
Can't find a movie or TV show? Login to create it.
Elementu hau kalifikatu edo zerrenda batera gehitzea nahi al duzu?
Ez zara kidea?
Tony0892 Erabiltzailearen Erantzuna
Urtarrila 21, 2013 egunean 9:53 AM(e)tan
Bumb...
I still dont have an answer to my question above. Is there anyone that can help me with my problem ?
Travis Bell Erabiltzailearen Erantzuna
Urtarrila 21, 2013 egunean 10:26 AM(e)tan
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.