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 trying to use the batch API to make my users able to invite all their page fans to an event. It's the first I'm trying to use the batch API and I got some troubles with it. Here is my code without using the batch :

$result = $facebookObj->api(array(
      'method' => 'fql.query',
      'query' => 'select uid,name from user where uid in ( select uid from page_fan where uid in (select uid2 from friend where uid1 = me()) and page_id = '.$fbPage.')'
));

foreach ($result as $value) {
   $ret_val = $facebookObj->api($event_fbID . "/invited/" . $value['uid'],'POST');
   if($ret_val) {
     // Success
     $numInvited++;
   }
}

How to adapt this code to batch API to query more than 50 fans of the page ?

Thanks

share|improve this question
What exactly are the "troubles" you are having? Psychic debugging is a hard job ;) – Lix Oct 17 '12 at 11:07
Please include your batch PHP code in order for us to see your problem. – Matthew Johnston Oct 17 '12 at 11:36

2 Answers

How to adapt this code to batch API to query more than 50 fans of the page ?

Since 50 operations is the limit for batch requests – just split it up into packages of 50, and make one batch request containing those 50 actions, and then the next one.

share|improve this answer
I imagine the OP is getting an error message to that effect... "You can only send 50 invites". – Lix Oct 17 '12 at 11:54

sorry for being so late about the answer. My problem is that I don't know how to test my code.

I used your answers to write this sample of code. Can someone tell me if it might work, or how can I test it without sending it to production ?

//Getting all the likers of the page
$result = $facebookObj->api(array(
      'method' => 'fql.query',
      'query' => 'select uid,name from user where uid in ( select uid from page_fan where uid in (select uid2 from friend where uid1 = me()) and page_id = '.$fbPage.')'
));


//If liker are more than 50 we use batch request
if($numLikers >50){

   // split array into several part of 50 users accounts                        
   $splitLikers = array_chunk($result, 50);
   // count how many arrays are generated by the array_chunk
   $countSplit = count($splitLikers);

   //Start a loop through the numbers of groups of 50 users  (or less if last group contains less than 50 users                      
   for($a=0; $a<$countSplit; $a++){
      //Second loop to go through the 50 likers in one group                                  
      for($b=0; $b<count($splitLikers[$a]); $b++){
           // construct an array containing the whole group                                
           $queries[$a] = array('method' => 'POST', 'relative_url' => $event_fbID . "/invited/" . $splitLikers[$a][$b]['uid']);

       }
       //Send POST batch request with the array above                            
       $ret_val = $facebookObj->api('/?batch='.json_encode($queries[$a]), 'POST');
    }


 }else{

    foreach ($result as $value) {
         $ret_val = $facebookObj->api($event_fbID . "/invited/" . $value['uid'],'POST');
         if($ret_val) {
            // Success
             $numInvited++;
         }
    }
}
share|improve this answer
Up ? Do you think that this script is correct ? Or do you have an idea how to test it ? – David Lichtlé Oct 18 '12 at 17:11

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.