I am using facebook like in my site, and my php script need to know how many people like every page. For example I want to use in php echo $likes; where $likes is a number of likes. Is it possible to do?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Using the new Graph API this is fairly straight forward. Just do: https://graph.facebook.com/uniqueid/members Using the new SDK library (http://github.com/facebook/php-sdk/) do the following:
This should return a JSON array which you can iterate. |
||||
|
|