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 have a very strange problem: Sometimes (but not every time!) when I try to get the current user facebook ID, I get "1"; for example: $config = array();

$config["appId"] = API_KEY;
$config["secret"] = SECRET;
$facebook=  new Facebook($config);
$user=$facbook->getUser();
echo $user['id'];//returns 1;   

Obviously - this it not the real user ID. When I check if the access token is still good -I see that it is still valid. Also, even if I force the user to login again using:

FB.login(function(response) {
    if (response.authResponse) {
        top.location.href="<?php echo HOME_URL;?>"
    }, {scope: 'publish_stream'});

Still getting the same result. Any idea what could be the problem?

share|improve this question
1  
Hey, $facebook->getUser() returns integral facebook Id itself, I don't think there is any 'id' index of the same. – Smita Oct 27 '12 at 10:55

1 Answer

You should ONLY get an ID back from FB:

$user_id = $facbook->getUser();
echo $user_id;

You would later have to query the API for a user profile (which is what it looks like you are doing):

$user_profile = $facebook->api('/me');

Reference:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.