can someone help me please how to check is visitor on my website fan of my facebook page,thanks in advance. Regards
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.
|
|
|
The easiest way to do this is using the graph API. Make a request to https://graph.facebook.com/me/likes?fields=id&access_token=.... You will recieve a JSON object back that looks like this:
] } From this you can just iterate through the likes until you find if the like you are looking for exists. If you don't know the id of your Url you can simply go to http://graph.facebook.com/http://www.mydomain.com/myurl and you will be given a JSON result that contains the ID of your page. |
|||||||
|