I'm a newbie to FB... so I used the latest PHP DSK and want to simply access user data
$facebook = new Facebook(array(
'appId' => 'xxxx',
'secret' => 'yyyyy',
'cookie' => true
));
$user = $facebook->getUser();
if ($user) { // Checks if there is already a logged in user
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
else { //Ask for bare minimum login
$login_url = $facebook->getLoginUrl();
header("Location: ".$login_url);
}
Now my problem is that the $user is FB logged in, but $facebook->api('/me') not only fails, but I get no App authorization dialog either ???
What am I doing wrong ?

OAuthException: An active access token must be used to query information about the current user.What to do with it. – millebii Sep 5 '11 at 8:16$login_url!! – ifaour Sep 5 '11 at 9:07