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 ?