Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
What's the raw JSON look like before you decode it? – sarnold Dec 21 '11 at 23:31
It appears to be empty, because I have this '$user = json_decode(file_get_contents( 'graph.facebook.com/me?access_token='; . $cookie['access_token']));' and then use a 'echo $user' but is not showing anything – Vilma Miranda Dec 22 '11 at 0:00
How about the $cookie? Anything there? or did that fail too? – sarnold Dec 22 '11 at 0:04
Same, it's empty, but if I 'echo $_COOKIE' then it gives me an array with an element, sadly my server is down right now and I cannot show you – Vilma Miranda Dec 22 '11 at 0:11
Excellent; start adding some debugging lines to the get_facebook_cookie() routine and try to spot the bug in action. – sarnold Dec 22 '11 at 0:15
show 3 more comments

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.