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.

Possible Duplicate:
In facebook connect, how can I check if a user is a fan of my facebook page? Is it possible to track?

How can I check thought the FB Javascript API if the current user is a fan of some page (not my own app or page, but another specific page)?

I need to check this from within the page inserted into the FB's canvas IFRAME, throught the JS SDK...I need to check whether he has "subscribed" to that page, is a fan of it (clicked "I like it") and possibly if he has put it into his favorites.

Is this possible?

share|improve this question
Check this answer: stackoverflow.com/questions/2181251/… It looks like the user needs to be connected with Facebook Connect for this to work. – Brian Armstrong Oct 19 '10 at 18:40

marked as duplicate by Mark, casperOne Jun 7 '12 at 11:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

This works for me in the JS API:

FB.api({ method: 'pages.isFan', page_id : fbPageId }, function(response){
    if(response == true){
        alert('the user is a fan');
    }else{
        alert('the user is not an fan or we don't have permission to check')
    }
});

Cheers,
Jeremy

share|improve this answer
1  
This is using the old rest api, which is going to get deprecated. – Friso Jan 5 '12 at 19:12

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