1

我正在尝试使用批处理 API 邀请页面的所有粉丝参加 facebook 活动。这是我第一次使用这个API,此时我没有什么可以测试这部分代码......有人可以告诉我如何在不使用真实页面的情况下进行测试,有真正的粉丝......或者告诉我是否它看起来正确吗?

 //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++;
       }
   }
}
4

1 回答 1

0

您的代码看起来不错,但不要忘记您可能需要将访问令牌添加到批处理请求中

像:

$params['access_token']=[USER_ACCESS_TOKEN];

$ret_val = $facebookObj->api('/?batch='.json_encode($queries[$a]), 'POST', $params);

对于测试,您可能希望创建一个添加了几个朋友的新页面并进行测试。

另请记住,您需要处理响应,批处理请求将响应与批处理数组长度相同的数组,并且每个对象可能是不同的代码,如果它被发送则为真。

您也可以在Graph Explorer中尝试您的 FQL 代码(点击此处)

看起来不错,但它显示了一个额外的结果。

于 2013-03-22T20:28:35.393 回答