hello file_get_contents() is returning "failed to open stream" when I call it on a Facebook access_token URL.
Warning: file_get_contents(https://graph.facebook.com/me?access_token=xxxxx) [function.file-get-contents]: failed to open stream: No such file or directory in /home/manorlog/public_html/index.php on line 109
If I try to manually hit the Facebook access_token URL it shows me my persional details
I have also tried this code and verified it works: $foo = file_get_contents('http://google.com'); echo $foo Anyone have any ideas why file_get_contents() is failing with the Facebook access_token URL?
how can i solve this issue