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.

Recently I'm working with Facebook batch requests using PHP. Now, I'm trying to get the names of the people who select an option in Facebook questions but also get the option they've selected. Having a relation of this with a simple query using FQL is difficult so I tried to separate them

Using this:

SELECT voter_id FROM question_option_votes WHERE option_id IN (SELECT  id from question_option WHERE question_id = "...")

AND

SELECT uid, username, ... FROM user WHERE uid IN ({result=aliasOfTheLastRequest:$.data.*.voter_id) 

But I got nothing! I know the limit of request using batch is 20.

$fql = 'method/fql.query?query=SELECT voter_id FROM question_option_votes WHERE option_id IN (SELECT  id from question_option WHERE question_id = "252339054834206") LIMIT 20';
$batch = array(
    array(
        'method' => 'GET',
        'name' => 'getfriends',
        'relative_url' => str_replace(' ', '+', $fql),
        'omit_response_on_success' => false // Also changed to true
    ),
    array(
        'method' => 'GET', 
        'relative_url' => 'method/fql.query?query=SELECT+uid,+username,... FROM+user+WHERE+uid+IN+({result=aliasOfTheLastRequest:$.data.*.voter_id) ' // I also tried this '?ids={result=getfriends:$.data.*.voter_id}' 
    )
);

$data = $this->facebook->api('/?batch=' . json_encode($batch) . '&access_token=' . $access_token, 'POST');

When I print $data, I got the data result of the first query but not of the second. For the second I got and empty array; and using the other option: "Cannot specify an empty identifier"; so I'm not getting the results of the first query into the second one.

Am I doing something wrong?

share|improve this question

1 Answer

up vote 1 down vote accepted

Just replace $.data.*.voter_id with $.*.voter_id (fql.query doesn't return data object, just body)

share|improve this answer
You may be right. I will take a look at this later because now I don't have any page access token to access some questions to test it. – Jose Adrian Apr 14 '12 at 19:16
So, was I right? :) – Styx Apr 27 '12 at 7:46
It worked! You were right. But I found another way. Not better than this but it helped me (multi query with references). Thanks! – Jose Adrian Apr 30 '12 at 5:41
No problem. I thought you knew about WHERE uid IN (SELECT uid FROM #aliasOfLastQuery) and you were need just ids={result=...} syntax :) – Styx Apr 30 '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.