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 recently included the facebook comments widget on my site, and now I would like to, on another page tell how many comments each post on my site has. My code looks like this:

$facebook = new Facebook(MY_API_KEY,MY_SECRET_KEY);
$result = $facebook->api(array(
    'query' => 'SELECT text FROM comment WHERE xid=3', 
    'method' => 'fql.query'));
print_r($result);

If I run that same FQL query on this page: http://developers.facebook.com/docs/reference/rest/fql.query/ it works, but when run on my site it returns an empty array.

Thanks in advance!

share|improve this question
I have the same issue. Anybody found a solution? – user576688 Jan 15 '11 at 16:42

1 Answer

up vote 1 down vote accepted

You're mixing front end documentation with back end implementation. The link you posted is more for implementation in javascript.

You should be creating and instance of Facebook like this:

$facebook = new Facebook(array('appId'=> MY_API_KEY, 'secret'=> MY_SECRET_KEY));

That may be your problem, you may not be getting and authenticated instance of Facebook. The constructor function only takes 1 parameter.

share|improve this answer
Thanks! That fixed it. – codersarepeople Jan 16 '11 at 4:08

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.