I'm trying to make a simple login by using PHP and Facebook. THe problem is that I've this result when It's supposed to be shown the "iframe","popup" or "page" (none of them are working)
API Error Code: 102
API Error Description: Session key invalid or no longer valid
Error Message: Iframe dialogs must be called with a session key
The code I'm using for now is this:
$config = array(
'appId' => 'CODE1',
'secret' => 'CODE2',
'cookie' => true
);
$params = array(
'redirect_uri' => 'http://domain.dev',
'display'=>'iframe'
);
$facebook = new Facebook($config);
$user = $facebook->getUser();
if ($user) {
//something
} else {
$user = null;
$loginUrl = $facebook->getLoginUrl($params);
//redirect to loginURL
}