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.

What would be the fql query for getting friends who has got certain application installed and has accepted given perrmisions and are girls ?

here is my query so far:

 $fql = "SELECT uid, name, pic_square, sex FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())";
    $response = $facebook->api(array(
        'method' => 'fql.query',
        'query' =>$fql,
    ));
    $this->_helper->json($response);

Thanks You for any help

share|improve this question
accepted given perrmisions means what? Which permissions you want to check? – Somnath Muluk Feb 10 '12 at 7:29

1 Answer

Try this fql query:

$fql = "SELECT uid, name, pic_square, sex FROM user WHERE sex='female' AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me())";

share|improve this answer
@grubber:Did this answer help you to find your solution to your question, if so, please accept this answer. See this link for how to mark answers. Thank you! – Somnath Muluk Feb 25 '12 at 10:14

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.