0

我正在尝试向多个 FB 用户发布状态消息,但不是在他们在我的网站上时。对于我要发布的每个用户,我都有 publish_stream 权限和 60 天的访问令牌,但我不知道如何正确批处理。

这是放入访问令牌的正确方法吗?

$body = array(
            'message' => $message, 
            'link'    => $link,
            'picture' => $picture,
            'name'    => $name,
            'description'=> $description
            );
    $batchPost=array();
    $i=1;       
    foreach ($user_fb_id_array as $fb_id) {
        $batchPost[] = array(
            'method' => 'POST',
            'relative_url' => "/" . $fb_id['user_fb_id'] . "/feed?access_token=" . $fb_id['user_fb_auth_code'], // Will this work???
            'body' => http_build_query($body) );
        if($i++ == 50) {
            try {
                $multiPostResponse = $this->facebook->api('?batch='.urlencode(json_encode($batchPost)), 'POST');
            } catch(FacebookApiException $e) {
                error_log($e);
                echo("Batch Post Failed");
            }
            unset($batchPost);
            $i=1;
        }
    }

    if(isset($batchPost) && count($batchPost) > 0 ) {
        try{
            $multiPostResponse = $this->facebook->api('?batch='.urlencode(json_encode($batchPost)), 'POST');
        } catch(FacebookApiException $e){
            error_log($e);
            echo("Batch Post Failed");
        }
    }

为了在应得的地方给予信任,此代码是从 25labs.com 的原始代码修改而来的。

4

1 回答 1

0

访问令牌应该为每个调用定义在与“方法”和“相对URL”相同的级别,但你的方法可能也可以工作。

您实际上是收到错误消息还是只是在询问如何实现?

于 2012-07-24T15:35:32.090 回答