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.

I need to store some stats about fan pages (like count, shares, etc) but cant understand how to count Page's total wall posts? Preferably want to use FQL but any ideas appreciated

share|improve this question
is the problem solved? – San Mar 7 at 18:55

2 Answers

here is code to (like count, shares, etc)

$source_url = "http://www.flightpodcast.com/episode-6-john-bartels-qantas-qf30";
$url = "http://api.facebook.com/restserver.php?method=links.getStats&urls=".urlencode($source_url);
$xml = file_get_contents($url);//echo "<pre/>";print_r($xml);exit;
$xml = simplexml_load_string($xml);
echo "<b>Shares:</b> ".$shares = $xml->link_stat->share_count;echo "<br/>";
echo "<b>Likes:</b> ".$likes = $xml->link_stat->like_count;echo "<br/>";
echo "<b>Comments:</b> ".$comments = $xml->link_stat->comment_count;echo "<br/>";
echo "<b>Total:</b> ".$total = $xml->link_stat->total_count;echo "<br/>";
share|improve this answer
thank you for support, but I need to count Wall Posts, likes and shares already implemented via FQL – rkcell Jun 13 '11 at 19:21

Run a FQL query against the link_stat table:

FQL: SELECT share_count, like_count, comment_count, total_count FROM link_stat WHERE url="http://example.com"

PHP: $facebook->api_client->fql_query('SELECT share_count, like_count, comment_count, total_count FROM link_stat WHERE url="http://example.com"');

This FQL query might require now an access token - so try adding that if the above fail.

You can also access the graph api: http://graph.facebook.com/?id=http://example.com.

share|improve this answer
1  
Thanks for the post, but I need Wallposts count and nothibg else )) – rkcell Jun 22 '11 at 0:09

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.