Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I had hosted two apps a month before but today morning i have noticed that, it was not showing the UserInfo when getuser(); was executed. Just showing 0. Before it was working smoothly. Both apps not working on Web Server. But working fine on Localhost.Please help me out. I even authenticate the user and then takes to other page . Below is my code

require_once 'appinclude.php';
include_once "src/facebook.php";
$facebook = new Facebook(array(
    'appId' => $appid,
'secret' => $appsecret,
    'cookie' => true,
));
$user = $facebook->getUser();
if($user) {
try {
    $me = $facebook->api('/me','GET');
    $fname = $me['first_name'];

} catch(FacebookApiException $e) {
    error_log($e);
}
   }   else {

 $loginUrl = $facebook->getLoginUrl();
echo("<br>login url=".$loginUrl);
 }

Thanks in Advance...

share|improve this question

1 Answer

up vote 1 down vote accepted

It was firing error Curl Exception 7, unable to connect to Host and which was leadin to this problem. Go to pico /etc/hosts and enter this line
69.171.224.34 graph.facebook.com

It may help you and also Whitelist IP range listed here http://developers.facebook.com/docs/ApplicationSecurity/#facebook_scraper

share|improve this answer
wow this one just bit me yesterday. It was previously working fine. Facebook must be forcing the whitelisting now. – Dobler Oct 30 '12 at 8:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.