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.

Hi i'm searching for a way to know if a visitor of my webpage did like my facebook fanpage ? Is there away to know it? It is better if it can be done with javascript but is not a problem if it is in php. Thank you.

EDITED: and i want to know as well if the visitor did like my fanpage earlier ?

share|improve this question

closed as not a real question by John Conde, Fabrício Matté, cryptic ツ, Jocelyn, Yogesh Suthar Jan 12 at 5:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 0 down vote accepted

It seems there is a way to know if the visitor liked your page.

You can check this page : How to check if a user likes my Facebook Page or URL using Facebook's API

share|improve this answer

If you want to use Javascript, Facebook provides a callback when the like button is clicked :

FB.Event.subscribe('edge.create',
    function(response) {
        alert('You liked the URL: ' + response);
    }
);

You can find more details there : https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

share|improve this answer
yes but what if a visitor did like my page earlier ? i want to know that to ? – user1898399 Jan 12 at 2:30
1  
it seems that you need some permissions to access this information. See sitepoint.com/forums/… – Libert Piou Piou Jan 12 at 2:39

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