I have a website facebook app that I use it to publish news on app users walls.
my problem that my code just published the post on the first user's wall and nothing posted on others wall
my code is
$users = // get all my users in an array
for ($i = 0; $i < count($users); $i++) {
try {
$this->facebook->setAccessToken($users[$i]->access_token);
$user = $this->facebook->getUser();
$this->facebook->setFileUploadSupport(true);
$args = array(
'access_token' => $users[$i]->access_token,
'message' => $message,
'image' => '@' . ABSOLUTE_PATH . "ix.jpg",
);
$post_id = $this->facebook->api("/me/photos", "post", $args);
}
catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
$this->facebook->setAccessToken($users[$i]->access_token);already, is it still necessary to also set it as a parameter in the arguments array that you're passing? – ColdHawaiian Jul 20 '12 at 17:54$post_id = $this->facebook->api("/me/photos", "post", $args);, instead of using the path"/me/photos", you could also try using the user-id for the user in the path instead of"me", for example"/{$users[$i]->id}/photos". – ColdHawaiian Jul 20 '12 at 17:57