I'm having a problem trying to use cURL to get the access token from Facebook on my Linux server. On my Windows machine everything works fine when I'm running PHP under XAMPP, but not in Linux.
I have installed cURL on my Linux server and am now trying to use it, but it doesn't return any information.
My code is as follows:
$url = "https://graph.facebook.com/oauth/access_token?client_id=278313225526998&redirect_uri=thejunction.africanbank.net/baobab/baobab.php&client_secret=$app_secret&code=$code";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Host: graph.facebook.com'));
$access_token = curl_exec($ch);
curl_close($ch);
echo "access is: ".$access_token;
Can someone please let me know what I might be doing wrong here? It gives me the error:
An error occured while fetching the URI
I also tried using
$url = 'http://www.stackoverflow.com'; //curl script to get content of given url $ch = curl_init(); // set the target url curl_setopt($ch, CURLOPT_URL,$url); // request as if Firefox curl_setopt($ch, CURLOPT_HTTPHEADER, Array("User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.15) Gecko/20080623 Firefox/2.0.0.15") ); curl_setopt($ch, CURLOPT_NOBODY, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result= curl_exec ($ch); curl_close ($ch); echo "result is".$result;
and it gives me an error
An error occured while fetching the URI. Please retry.
and in my php.ini file curl is enabled, please see the picture

What might be the problem guys? please help me.
Thanks Donald