Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

By using Graph API I can retrieve comments, likes count of both internal and external Facebook url. But I can only get the shares count of external Facebook url

For example:

https://graph.facebook.com/?ids=http://www.youtube.com/watch?v=tu8BNocnVzc

But not a facebook one:

http://graph.facebook.com/?ids=http://www.facebook.com/photo.php?fbid=364861533533284

How can I get the share numbers of a Facebook object?

(I can get likes and comments by using this url http://graph.facebook.com/364861533533284)

share|improve this question

1 Answer

You should use FQL and query the photo table https://developers.facebook.com/docs/reference/fql/photo or link_stat table https://developers.facebook.com/docs/reference/fql/link_stat..

You can see how it delivers the results here: http://developers.facebook.com/tools/explorer?fql=SELECT%20url%2C%20normalized_url%2C%20share_count%2C%20like_count%2C%20comment_count%2C%20total_count%2C%0Acommentsbox_count%2C%20comments_fbid%2C%20click_count%20FROM%20link_stat%20WHERE%20url%3D%22http%3A%2F%2Fwww.facebook.com%2Fphoto.php%3Ffbid%3D364861533533284%22

And here is how you can use the FQL calls to get the result:

    <?php 
        $img_url='http://www.facebook.com/photo.php?fbid=364861533533284';

        $query_url="https://api.facebook.com/method/fql.query?query=
                    select%20total_count,share_count,like_count,comment_count,
                    commentsbox_count%20from%20link_stat%20where%20
                    url='" . $directory_url . "'&format=json";

        $response = file_get_contents($query_url);
        $response_array = json_decode($response, true);
        $params=$response_array[0];


        $total_count=$params['total_count'];
        $like_count=$params['like_count'];
        $comment_count=$params['comment_count'];
        $share_count=$params['share_count'];

        ?>
share|improve this answer
Can you please write query for getting result? – Somnath Muluk Jan 23 at 5:11
ok updated my answer with the query and a test run in the developer tools, hopefully that helps! – Jessie Frazelle Jan 23 at 13:20
The approach described in this answer does not work. I'm able to find like_count and comment_count via the Graph API or the FQL "photo" table, but there appears to be no way to find share count for a photo. Here's an example query that has incorrect results: developers.facebook.com/tools/… – Todd Apr 15 at 14:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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