I am building an app using open graph api (PHP sdk). I publish on my friends's wall through this loop :
// Where $ids is my array of friends ids
foreach($ids as $id) {
$facebook->api('/'.$id.'/feed', 'post', array(
'message' => 'my message',
'link' => 'my link',
'picture' => 'my picture')
);
}
I know that before Facebook use a dynamic limit we could find in app "insight". It seems deprecated today. So i wonder if is there a limit for my stuff ? Can i loop 1000 entries without limitations ? I can't find any informations about this.
Thx