Hi,
If I was collating a bunch of url to be displayed on my site as a list and wanted to check the number of 'likes' or 'share' they were receiviing in facebook via the graph api [this is simply done by taking this url:
https://graph.facebook.com/ and then adding the url that you want to check to it ie.
https://graph.facebook.com/http://www.e-fellows.net/show/detail.php/21049
It displays the following code;
{
"id": "http://www.e-fellows.net/show/detail.php/21049",
"shares": 88
}
So the number next to the "shares" is what I would like to display below the original url which will be displayed on the site, in this case it would be:
http://www.e-fellows.net/show/detail.php/21049
I would like it to be done automated for each time a url that is added. Most of the urls will be added via or form or imported via rss feeds.
thanks.
I am new to this forum 🙂 and very much noob to actual coding although I have been following php for a while and time to step up the game with doing something myself.