Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.