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 am trying to get the facebook share count, link count and comments count for a page in my site. I am trying to use FQL for that. Here is my code:

<?php   
         $query = "select comment_count, share_count, like_count from link_stat 
         where url=<my_url_of_page>";  
         //My FQL Query

         $url = "https://graph.facebook.com/fql?q=".$query;
         $fbData = file_get_contents($url);
         echo $fbData;    
?>

When I run the same query in graph explorer it is giving correct results. When as when I am calling it from my machine, it is showing blank page.

Please suggest am I doing something wrong here.

-- Thanks for your time.

share|improve this question
doesn't it need an access token? – ogzd Feb 7 at 7:35

1 Answer

up vote 0 down vote accepted

You need to login as an app before you can use the link stat table.

Follow the steps in the documentation to login as an app.

share|improve this answer

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.