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