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.

How to determine if user already liked page(page of site not FB) with facebook like button?

I need this to show different content for them in header of the site.

Thanks for help.

share|improve this question
add a handler using javascript/jquery to the id/class of the fb like button – corroded Apr 15 '11 at 7:49
Is the like button in an iframe ? – alex Apr 15 '11 at 7:52
it is in an iframe, i would imagine that facebook wants to prevent sites knowing if someone has liked it, because then you could force users before content is shown – Bruce Aldridge Apr 15 '11 at 7:57

2 Answers

If it is in an iframe, you can't access it programmatically because of same origin policy.

share|improve this answer
i don't need to be this functionality in FB API, i just need some hack that can give me what i want. I figured out hot to determine if user registered on facebook, but i can't find how to determine if it already liked the site. So just asking maybe someone already find some possibility to do this. – Creotiv Apr 17 '11 at 6:18
up vote 0 down vote accepted

Found this posibility in facebook graph API.

https://graph.facebook.com/me/likes

http://developers.facebook.com/docs/reference/api/

Pity but this need to be authorized. Will try to find something else.

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.