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?
|
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? |
||||
|
|
|
It's possible with the Graph API, simply use:
something like:
Would return:
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:
So getting the Like Button number is possible with the Graph API through the
|
|||||||||||
|
|
The facebook like button does two things that the API does not do. This might create confusion when you compare the two.
Hope this helps someone |
|||
|
|
|
when i used FQL I found the problem (but it is still problem) the documentation says that the number shown is the sum of:
but on my website the shown number is sum of these 4 counts + number of shares (again) |
|||
|
|
|
You should not use graph api. If you either call: or both will return:
But the number shown is the sum of:
So you must use FQL. |
|||
|
|
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. |
|||
|
|