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

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?

share|improve this question

1 Answer

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:

$facebook = new Facebook($appId,$secret);
$facebook->api('uniqueid/members');

This should return a JSON array which you can iterate.

share|improve this answer

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.