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 it possible to show the actual exact count of likes in the layout style "box count" for example 1019 not the rounded 1K in the like button on my homepage?

I do not want to use the standard layout style. I want to use the box count.

Is there a way to do this??

share|improve this question

1 Answer

http://graph.facebook.com/?id=http://url.to/get/likes

you can get it with PHP & put it to page

so for example

<?php
$data = file_get_contents("http://graph.facebook.com/?id=http://www.stackoverflow.com");
$id_likes = json_decode($data);
$likes = $id_likes->shares;
echo $likes;
?>

working demo

share|improve this answer
Thanks, I see how this works... Can you tell me where I can insert this to get the number to show up in the grey box area?? oi53.tinypic.com/ofn3o9.jpg – mmmmm83 Aug 11 '11 at 6:41
@mmmmm83: it's not so easy. – genesis Aug 11 '11 at 12:26
ok thanks anyway!! – mmmmm83 Aug 12 '11 at 4:52

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.