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);