can someone help me please how to check is visitor on my website fan of my facebook page,thanks in advance.
Regards
can someone help me please how to check is visitor on my website fan
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.