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.

In the video link you can see what is happening in my code.

http://screencast.com/t/93VBDgw7

I can call the PHP SDK through ajax and get the correct access_token, but loading this page on its own keeps giving me the APP's access_token instead of the user. It is also showing the session variables as null. When I hit back from another page (doesnt matter which one) however, it suddenly grabs the session properly and works!

Here is the debug code that you'll see the results of in the video:

require_once 'facebook/facebook.php';
$this->ci = &get_instance();   

$this->ci->facebook = new Facebook(array(
  'appId'  => FBAPPID,
  'secret' => FBAPPSECRET,
));

var_dump('User:',$this->ci->facebook->getUser());
var_dump($this->ci->facebook->getAccessToken());
var_dump(FBAPPID);
var_dump($_SESSION);
share|improve this question
1  
update your sdk to php sdk 3.2.2 – Hemc Dec 11 '12 at 10:21

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.