I've seen this example at facebook, but doesn't seem to be working.
<?php
define('YOUR_APP_ID', 'your app id ');
define('YOUR_APP_SECRET', 'your app secret');
function get_facebook_cookie($app_id, $app_secret) {
$args = array();
parse_str(trim($_COOKIE['fbs_' . $app_id], '\\"'), $args);
ksort($args);
$payload = '';
foreach ($args as $key => $value) {
if ($key != 'sig') {
$payload .= $key . '=' . $value;
}
}
if (md5($payload . $app_secret) != $args['sig']) {
return null;
}
return $args;
}
$cookie = get_facebook_cookie(YOUR_APP_ID, YOUR_APP_SECRET);
$user = json_decode(file_get_contents(
'https://graph.facebook.com/me?access_token=' .
$cookie['access_token']));
?>
All this documentation I found it on facebook so I just asumed that replacing some things would be enough.
I find an error/bug when it comes to this line
<?php if ($cookie) { ?>
Welcome <?= $user->name ?>
<?php } else { ?>
<fb:login-button></fb:login-button>
<?php } ?>
The login doesn't return the name of the person who's logged in.
I've tried this
FB.Event.subscribe('auth.login', function(response) {
alert('session:' response.session + ' connection:' response.status);
window.location.reload();
});
This return session: undefined and connection: connected, so I don't understand where is the problem.
I don't know if it is because some bug (which I already heard about with this plugin) or not
$cookie? Anything there? or did that fail too? – sarnold Dec 22 '11 at 0:04get_facebook_cookie()routine and try to spot the bug in action. – sarnold Dec 22 '11 at 0:15