I want to make php script using the faceook graph and sdk to make a time-crom task that post evey 6 hours specific status on all users walls
my question is how many users can i send to them at once ?
may be 1000 or 50000 or what?
i'm using
$attachment = array(
'access_token'=>TOKEN,
'message'=>'message_here',
'link' => 'http://www.example.com',
);
$result = $facebook->api(
'me/links',
'post',
$attachment
);