Facebook REST API for alternate links.

I am creating a website where I need sharing statistics for a specific URL, for example http://www.facebook.com/ .

So, I came across this REST api on facebook which solves the problem perfectly.

https://api.facebook.com/restserver.php?method=links.getStats&urls=http://www.facebook.com/

But I noticed that the API will be deprecated, and I have no idea when.

I wanted to know what constitutes an alternative to the Facebook GUI API for the same REST API for previous versions.

+4
source share
1 answer

Use the link_stat FQL table - this is the same information. You can also use the Insights API of the Graph API, depending on what metrics you need.

+2
source