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.

I tried to load que quantity of likes of a picture, but the Facebook always return none data. what I am doing wrong? I tried using the (https://graph.facebook.com/2063756506389/likes) witch 2063756506389 is the picture ID.

<?php
require "src/facebook.php";
$facebook = new Facebook(array(
  'appId'  => '117743971608120',
  'secret' => '943716006e74d9b9283d4d5d8ab93204',
));

$fql = 'SELECT url, share_count, like_count, comment_count, click_count, total_count 
        FROM link_stat WHERE url="https://graph.facebook.com/2063756506389"';

$result = $facebook->api(array(
    'method' => 'fql.query',
    'query' => $fql,
));
print_r($result);
?>
share|improve this question
Some code would be helpful. – Tim Jul 26 '11 at 20:23
I tried with this link on address from brewser. With the simples PHP code, I got the same null data. – Marcos Jul 26 '11 at 20:39
url should be the url of the image, not a link to the graph api. – Jeff Sherlock Jul 26 '11 at 23:16
Jeff. I tried with the photo URL, but without any results. I tried with facebook.com/photo.php?fbid=1765684276953 link. – Marcos Jul 27 '11 at 3:11
You should also never post your app secret. – DSchultz Jul 27 '11 at 21:36
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.