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 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;
    }
}
share|improve this question
If you're setting the access token with $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
In the final API call, $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
thanks @ColdHawaiian, remving $this->facebook->setAccessToken($users[$i]->access_token); is a good solution – user504363 Jul 20 '12 at 18:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.