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 have an app where the Facebook Login was working great as of yesterday. I switched to AWS EC2 to get a bigger server for some capacity planning for today.

Unfortunately, the Facebook Login is no longer working. In particular, after getting the access_token from the JavaScript authorization, the getUser() call returns only 0. The code is below.

Since the server is the only thing that has changed (and IP) is there some configuration related to my server that I'm missing/unaware of?

if(isset($_GET["access_token"])) {
    $access_token = $_GET["access_token"];
    $facebook = new Facebook(array(
        'appId' => FACEBOOK_APP_ID,
        'secret' => FACEBOOK_SECRET,
    ));
    $facebook->setAccessToken($access_token);
    $user = $facebook->getUser();
    if($user) {
        try {
            $user_profile = $facebook->api('/me');

            $user_name = $user_profile["name"];
            $user_email = $user_profile["email"];
            $fb_uid = $user_profile["id"];
            $fb_access_token = $access_token;

        } catch (FacebookApiException $e) {
            $status_header = 'HTTP/1.1 500 Internal Server Error';
            header($status_header);  
            header('Content-type: application/json');

            echo json_encode(array('message' => 'Facebook Exception'));
            exit;
        }
    } else {
        $status_header = 'HTTP/1.1 500 Internal Server Error';
        header($status_header);  
        header('Content-type: application/json');

        echo json_encode(array('message' => 'Facebook user does not exist', 'access_token' => $access_token, 'user' => $user, 'fb' => $facebook));
        exit;
    }

}
share|improve this question
Try in another webbrowser. Maybe it's a cache or cookie issue? – Robin Castlin Aug 25 '11 at 16:30
Tried three different browsers – Rishi Khanna Aug 25 '11 at 16:33
Do you use the same domainname aswell? A facebook application is limited to the domain you've supplied in your settings. – Robin Castlin Aug 25 '11 at 16:36
Yes, it's the same domain. I pointed the DNS entry to the new server last night. – Rishi Khanna Aug 25 '11 at 16:45
I know this is an old question, but the 500 response is too glaring to bypass. This is not a 500 error. It ought to be either a 401 or a 200 with a nice error message. – Joe Frambach Oct 31 '12 at 15:34

2 Answers

up vote 0 down vote accepted

Two possible ideas:

  1. The Curl library you are using on that system is not working properly. Try doing the call from the shell using some of the examples that are scattered around FB's site.

  2. I once moved an app to a different server and had FB API calls inexplicably not work -- on the exact same code, after an rsync -- despite updating the new server IPs to be in our whitelist. I surmise that either the Facebook Developer App whitelist updating feature is broken or that IP was banned permanently from all of Facebook's APIs. If all else fails, try moving to a different EC2 instance in a different availability zone to see if it works there.

p.s. At the time, I emailed Facebook's "contact me if you have any problems" developer rep to check if the IP updating might be broken, but of course I got no response from the helpful team over there.

share|improve this answer
1  
Thanks, this made me dig deeper in the Curl library. Turns out it was the path for the CA Certs! For now I modified base_facebook.php to also capture the Curl error code 77 in the makeRequest() function. – Rishi Khanna Aug 25 '11 at 20:43

Verify the FACEBOOK_APP_ID and FACEBOOK_SECRET values are the correct ones and that the url you are accessing the site from is set as the site url and site domain on the application settings page.

Otherwise verify the PHP SDK versions are the same and the PHP versions are the same. This may help narrow down the problem.

share|improve this answer
I did that (and triple checked it) and everything is accurate. – Rishi Khanna Aug 25 '11 at 16:33
What is the url of the site? – BK. Aug 25 '11 at 16:33
edition01.com. I've hidden the FB Login button via CSS for now so users don't try to sign up and get an error. – Rishi Khanna Aug 25 '11 at 16:36
FYI, if you have access to a Javascript console and are comfortable with that, you can enable the FB Login button by running the following: $("p.hidden").removeClass('hidden'); – Rishi Khanna Aug 25 '11 at 16:39
Yes I was able to log in fine and see that /register.php is throwing a 500 error. What version of PHP SDK are you using? Same on both? – BK. Aug 25 '11 at 16:40
show 4 more comments

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.