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 use the facebook-phpsdk v3.0 with codeigniter 2.0. the code as below

$fb_config = array(
         'appId'  => 'XXX',
         'secret' => 'XXXX' 
     );

    $this->load->library('facebook', $fb_config);
    $user = $this->facebook->getUser();

    if ($user) {
        try {
            $user_profile = $this->facebook->api('/me');
        } catch (FacebookApiException $e) {
            $user = null;
        }
    }

and I set the application site URL as http://localhost/

when I am develop at localhost, and everything works fine.

But when I upload my code to remote server, and I change the facebook application site URL to http://mysite.com/, then I can't get $user by the getUser() function anymore, it return 0. However, sometimes it works fine and I didn't change any code, it's truly weird...

I spent days to figure out that, and tried to find solution on stackoverflow. just like, I tried to add base_domain to the base_facebook.php

protected static $DROP_QUERY_PARAMS = array(
 'code',
 'state',
 'signed_request',
 'base_domain',//I added this
);

but it still return 0...

Could someone help to figure out what happened or what I missed.

thanks in advanced

share|improve this question
Have u changed the 'Site Domain' property.. It should be the domain name and all 'Site url', 'canvas url' should be from the domain only... – Vijay Apr 11 '12 at 10:22
do you mean "App Domain" ? nop.. I keep it blank. but even when I setup my app domain, the login botton still doesn't work.. :( – Eugene Wang Apr 11 '12 at 13:23
maybe there are some bugs at php sdk v3.0, let me try v3.1.1... – Eugene Wang Apr 11 '12 at 13:46
What is the error in the login button? – Yan Apr 12 '12 at 13:49
no error message, just can't get the user data from getUser() function, the it redirect from facebook – Eugene Wang Apr 13 '12 at 6:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.