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:
How to check if a user likes my Facebook Page or URL using Facebook's API

how to check if user like a specific Facebook page or not from my website (using PHP or Javascript)

Fb App ID = 123456

Fb App Secret = `0123456789

Fbpage = http://www.facebook.com/mypage

my website = http://www.example.com

ex:

if user like Fbpage then

say "u are a fan"

else

say "u are not a fan"

share|improve this question

marked as duplicate by Mechanical snail, Tim, edorian, AVD, Jack Sep 24 '12 at 4:40

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.

2 Answers

From the Graph API likes documentation:

Belongs

You can check if a User likes a specific page by issuing an HTTP GETto /PROFILE_ID/likes/PAGE_ID. This will return, in the data array, an object with the following fields if the user is connected to the page.

You'll need a valid access token with the user_likes permission.

In Javascript, this might look like:

var page_id = 123456; // whatever

FB.init({
    // ...
});

FB.login(function(response)
{
    if (response.authResponse)
    {
         FB.api('/me/likes/' + page_id, function(api_response)
         {
             // if empty, they don't like. if not empty, they do
            console.debug(api_response); 
         });
    }

}, {'scope': 'user_likes'});
share|improve this answer

You need to use the likes end point (http://graph.facebook.com) this is a json representation of a user's likes , interests etc. Just parse the list for your page id.

share|improve this answer

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