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
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.
|
|
here is code to (like count, shares, etc)
|
|||
|
|
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. |
|||||
|