skip to Main Content

Facebook api – Facebook like count url

As Facebook changed their API and deprecated the old one, I need to get data (likes count, share count, comment count) about single pages. I figured out how to get data over Facebook graph (example link): https://graph.facebook.com/?fields=og_object{likes.limit(0).summary(true)},share&ids=http://www.businessinsider.com/airlines-dont-disclose-carrier-fee-that-inflates-ticket-prices-2016-9 But now I…

VIEW QUESTION

Facebook api – Get number of likes for a webpage from facebook

I used to get the number of likes for my webpage from facebook with: http://api.facebook.com/restserver.php?method=links.getStats&format=json&urls=www.example.com But this doesn't work anymore. I tried: https://graph.facebook.com/fql?q=SELECT%20total_count%20FROM%20link_stat%20WHERE%20url=%22www.example.com%22 But this doesn't work either. I tried: http://graph.facebook.com/?ids=http%3a%2f%2fwww.example.com But this gives me only the share_count, not the…

VIEW QUESTION
Back To Top
Search