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 use that kind of code for my Post Cron to Facebook script (using it for my fanpage):

if($sch['status_type'] == 'photo')
{
    $facebook->setFileUploadSupport(true);
    $args = array();
    $args['message'] = $sch['status_message'];
    $args['image'] = '@'.realpath($sch['photo_url']);
    $args['access_token'] = $sch['access_token'];

    try
    {
        $data = $facebook->api('/'.$album_id.'/photos', 'post', $args);
    }
}

Everything works fine, the $album_id is my fanpage wall photos album ID, but when the script posts a photo to Wall Photos - on my friends wall it looks like "Fanpage added 2 more photos to Wall Photos". Is it possible the uploaded photos to be separated individually?

Thank you!

share|improve this question
i think you have to all images in an array then pass it to post var – Rakesh Sharma Oct 10 '12 at 3:55

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.