facebook api - get likes and number of comments made for a specific period -


i pretty new facebook api's , know if it's possible fetch number of likes , number of comments specific page given period of time via api?

thanks in advance.

you can use fql:

e.g.

select comment_count, share_count, like_count link_stat url = "http://techcrunch.com/2011/04/12/facebook-comments-now-on-over-50k-sites-get-more-social-with-latest-upgrade/" 

you can use api explorer reference:

https://developers.facebook.com/tools/explorer/?fql=select+comment_count%2c+share_count%2c+like_count+from+link_stat+where+url+%3d+%22http%3a%2f%2ftechcrunch.com%2f2011%2f04%2f12%2ffacebook-comments-now-on-over-50k-sites-get-more-social-with-latest-upgrade%2f%22


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -