I can get the share count of an url using php sdk and using the deprecated rest api, but doesn't found a way to get the share counts of an url using graph api...

Is there any way to find out...

link|improve this question

0% accept rate
feedback

4 Answers

It's possible with the Graph API, simply use:

http://graph.facebook.com/?id=YOUR_URL

something like:

http://graph.facebook.com/?id=http://www.google.com

Would return:

{
   "id": "http://www.google.com",
   "shares": 1163912
}

UPDATE: while the above would answer how to get the share count. This number is not equal to the one you see on the Like Button, since that number is the sum of:

  • The number of likes of this URL
  • The number of shares of this URL (this includes copy/pasting a link back to Facebook)
  • The number of likes and comments on stories on Facebook about this URL
  • The number of inbox messages containing this URL as an attachment.

So getting the Like Button number is possible with the Graph API through the fql end-point (the link_stat table):

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.google.com'

total_count is the number that shows in the Like Button.

link|improve this answer
I don't get the share count for certain objects. I know they should have at least one share. – Fair Dinkum Thinkum Aug 10 '11 at 10:15
1  
@Fair, yes sometimes the number is not correct and it's a bit confusing. You may use the fql table suggested by the other answer, but still...sometimes numbers there is not correct too! – ifaour Aug 10 '11 at 10:40
is it possible to take shares of few sites? – Aziz Feb 17 at 8:24
@Aziz, what do you mean? – ifaour Feb 18 at 13:04
feedback

I don't think it's possible to get like count from the graph api, you should use FQL link_stat table. FQL is not deprecated.

link|improve this answer
feedback

You should not use graph api. If you either call:

or

both will return:

{
  "id": "http://www.apple.com",
  "shares": 1146997
}

But the number shown is the sum of:

  • number of likes of this URL
  • number of shares of this URL (this includes copy/pasting a link back to Facebook)
  • number of likes and comments on stories on Facebook about this URL
  • number of inbox messages containing this URL as an attachment.

So you must use FQL.
Look at this answer: How to fetch facebook likes, share, comments count from an article

link|improve this answer
you are absolutely right, by total_shares is sum of comments+likes+shares but the page i requested, shows shares_i_have = total_shares + likes – Aziz Feb 22 at 5:58
feedback

when i used FQL I found the problem (but it is still problem) the documentation says that the number shown is the sum of:

  • number of likes of this URL
  • number of shares of this URL (this includes copy/pasting a link back to Facebook)
  • number of likes and comments on stories on Facebook about this URL
  • number of inbox messages containing this URL as an attachment.

but on my website the shown number is sum of these 4 counts + number of shares (again)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.