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'm just getting started with developing with using facebook api with php. But I can't seem to figure out why I get only an empty array when I invoke the following query:

$fql = "SELECT message,time FROM status WHERE uid ='".$uid."'";

$response = $facebook->api(array('method' => 'fql.query','query' =>$fql));

print_r($response);

When I use a different query like the following I'm getting result back:

$fql = "SELECT uid2 FROM friend WHERE uid1='".$uid."'";
share|improve this question

1 Answer

There may be an issue with permissions. You may need to grant user_status permission.

See here - http://developers.facebook.com/docs/authentication/permissions

share|improve this answer
Hey I think that's most likely the issue. I'll try it out. Thanks Taras! – user448954 Oct 28 '10 at 5:04
ok, let people know if that worked ;) – Taras B Oct 28 '10 at 7:15

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.