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 can get the feed for a list of users, but by making one call at a time, hence, a LONG delay!

I am trying to make a batch processing, requesting the "feed" from a list of users (friends of a given "user").

My latest trial: ($Fids is an array containing the facebook user_id (ie 123456789012) )

$Fb = new Facebook(array('appId'=>FB_API_ID,'secret'=>FB_API_SECRET));
$access_token = $Fb->getAccessToken();
$queries = array();
for ($i=0; $i<$siz; $i++)
    $queries[] = array (    'method' => 'GET',
            'relative_url' => $Fids[$i]['foreignid']
        );
$batch = json_encode($queries); // works up to here
$objs = $Fb->api('/?batch='.$queries, 'POST');

I can't get any kind of reply. Someone has made it??

share|improve this question

1 Answer

Can you do a try catch on

$objs = $Fb->api('/?batch='.$queries, 'POST');

like

try{
$objs = $Fb->api('/?batch='.$queries, 'POST');
} catch (FacebookApiException $e) {
  error_log($e);
  $user = null;
}
share|improve this answer
No luck with that one, sorry. – Jean Ray Charlier Jan 6 '12 at 18: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.