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.

Is there a way to know if a user has liked an object on facebook, given that the user has given my app permission and I have the correct access tokens ??

share|improve this question

2 Answers

up vote 1 down vote accepted

it seems to me that it is what are you asking for ... https://developers.facebook.com/docs/reference/fql/like/

share|improve this answer
Is there a way to do it via the graph api?? Something like a get request with the access token or something?? – Vishesh Joshi Mar 22 '12 at 21:28
of course ... FB states you have to consider fql as part of Graph api read here about ... developers.facebook.com/blog/post/579 – luca Mar 22 '12 at 23:14

For people who come across this page and want a more specific answer, I use the following FQL query via the js sdk in order to find out if a specific user has liked a specific object. If they have, it will return an array with their id. If they haven't, it will return an empty array:

        FB.api({
            method: 'fql.query',
            query: 'select user_id from like where user_id=' + UserIDVar + ' and object_id=' + ActionIDVar,
            return_ssl_resources: 1
        }, function(response){
            console.log(response);
        });
share|improve this answer

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.