Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have integrated Facebook Like into my website.Now i need to get/list the count of the Facebook like in the Admin panel of my website. Is there any way to get this done?Need suggestions.Thanks in advance.

share|improve this question

2 Answers

up vote 6 down vote accepted

To can get likes of any object using Facebook API.Use a facebook API of your choice and use commands like this.

 https://graph.facebook.com/< your object id>/

You will receive a json object and you can extract likes from it.

 {
 "id": "567454",
 "link": "http://www.facebook.com/pages/PHP-Developer/103146756409401",
 "likes": 250,
 "type": "page"
 }

More info on https://developers.facebook.com/docs/reference/api/

The more direct / updated link for this topic on facebook is

https://developers.facebook.com/docs/reference/api/page/

share|improve this answer
Great thanks for the suggestion – Jimmy M Feb 17 '12 at 6:39
$url = 'http://graph.facebook.com/PAGE_OR_APP_ID';
echo '['.$url.']: '.json_decode(file_get_contents($url))->{'likes'};
share|improve this answer
This works as well, so +1. – Jared Eitnier Aug 31 '12 at 15:24

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.