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 created a Facebook App and I would like to check whether the current facebook user is fan or not of my facebook page (using Javascript). This verification must be done into the facebook app.

Best regards


I was trying the code:

function isEmptyObj(obj) {
for(var prop in obj) {
    alert(prop);
    if(obj.hasOwnProperty(prop))
        return false;
}

return true;

}

window.fbAsyncInit = function() {

          FB.init({
            appId      : 'APP_ID',
            status     : true, 
            cookie     : true,
            xfbml      : true,
            oauth      : true,
          });
          var page_id = "PAGE_ID";

              FB.api('/me/likes/' + page_id,function(response) {

                if( response.data ) {
                    if( !isEmptyObj(response.data) )
                        alert('You are a fan!');
                    else
                        alert('Not a fan!');
                } else {
                    alert('ERROR!');
                }
            });


        }
share|improve this question
Where should I send the bill? ;) – Lix Jun 20 '12 at 8:03
You seem to have misunderstood how things work on the site. You are going to have to show that you have at least tried something. People are not going to do your work for you. – Lix Jun 20 '12 at 8:04
The functionality that you desire is covered in the basic documentation on Facebook. You should try read over that first before coming and asking here. – Lix Jun 20 '12 at 8:04
Hi Lix, your comments are not necessary. We are posting here because we are looking for solutions – Ernesto Rodriguez Jun 20 '12 at 8:36
1  
Please answer Lix’ question …! – CBroe Jun 20 '12 at 9:37
show 9 more comments

1 Answer

up vote 1 down vote accepted

In order to check the like status of a user with the JavaScript SDK, you'll need to have the user logged into your application with the user_likes permission.

The alternative (without requiring a user to login or request permissions) is to use a server side language to parse the Signed Request that Facebook passes to any application running inside Facebook. The parsed Signed Request will contain a boolen value indicating whether or not the user has liked the page. That value will only be present if the application you are using has been embedded on a page as a Page tab application.

share|improve this answer
Thanks Lix, I used the "Signed Request" method on the server side and it is working fine. I was looking for a JavaScript SDK solution but there is no way :( – Ernesto Rodriguez Jun 20 '12 at 10:24
You can do it with JavaScript but that would mean you'd have to expose your app_secret to your users. That is very dangerous and not recommended... – Lix Jun 20 '12 at 10:26
I hope you now understand what I meant by my first comments and that you didn't take offence from them. We are here to help people but they have to try help themselves first. – Lix Jun 20 '12 at 10:28
1  
Yes I know, no problem and thanks again – Ernesto Rodriguez Jun 20 '12 at 10:39

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.