After searching for long time i got this link for getting the details of a link
https://graph.facebook.com/fql?q=SELECT url, normalized_url, share_count, like_count, comment_count, total_count, commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url='http://www.facebook.com/nokia'
Now this is the output i am getting:-
{
"data": [
{
"url": "http://www.facebook.com/nokia",
"normalized_url": "http://www.facebook.com/nokia",
"share_count": 1240,
"like_count": 8622386,
"comment_count": 287,
"total_count": 8623913,
"commentsbox_count": 2,
"comments_fbid": 404897301238,
"click_count": 10
}
]
}
After further searching, i was unable to find anything valuable from where i could understand how to use its values.
I explain you how. I have a page where there are 10 different links, now i want to show there total likes, comments and shares. I reached till here but now unable to move further.
How i can use the data provided by facebook on that particular page?
