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'm using the FB javascript APIs to work out if a user likes a particular page or not.

I know this is something that has been answered quite number of times on stackoverflow and elsewhere on forums. I've got something along the lines of:

FB.api('/me/likes/PAGE_ID',function(response) {
if( response.data ) {
    if( !isEmpty(response.data) )
        alert('You are a fan!');
    else
        alert('Not a fan!');
} else {
    alert('ERROR!');
}
});

// function to check for an empty object
function isEmpty(obj) {
    for(var prop in obj) {
    if(obj.hasOwnProperty(prop))
        return false;
    }

    return true;
}

As a precursor to this, my application has been configured to request the 'user_likes' permission in the authentication dialog. The user has granted access, is logged into facebook and has previously liked my page.

However I get inconsistent results running the above code. I've tested this against a range of colleagues fb accounts and even though they run through the same steps. For some users the code works fine, others it fails.

My theory at the moment is that the graph API doesn't have access to ALL fb accounts 'likes' information because they're stored in different tables perhaps.

Has anyone got any ideas ?

share|improve this question
Having looked around stackoverflow, it seems I'm not the only one with this problem:- facebook.stackoverflow.com/questions/10109773/… – user905844 May 27 '12 at 9:06

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.