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.

Possible Duplicate:
Upload image to an album if exist else create new album - Facebook

I am using this code to create a album and upload a photo to a user's profile

$facebook->setFileUploadSupport(true);
//Create an album
$album_details = array(
        'message'=> 'my album name',
        'name'=> 'my album name'
);
$create_album = $facebook->api('/me/albums', 'post', $album_details);

//Get album ID of the album you've just created
$album_uid = $create_album['id'];
$args = array('message' => '');
                copy($image, 'tmp/file.jpeg');
                $args['image'] = '@' . realpath('tmp/file.jpeg');
                $data = $facebook->api('/'.$album_uid.'/photos', 'post', $args);
                unlink('tmp/file.jpeg'); 

This code works fine but I have one problem, every time a user uploads a photo it creates a new album each time. What i want to do is create an album the first time only and if user uploads a photo a 2nd time it should get uploaded to the album created first time. How i can do that?

share|improve this question

marked as duplicate by Kev Jan 12 '12 at 23:38

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Use the same album id as you did the first time you uploaded.

share|improve this answer
how i will get the album id in 2nd time created at the first time – Badal Surana Dec 7 '11 at 6:48
You can save it to a database, for example. – echeese Dec 7 '11 at 7:05

First you want to check to see if the album you are creating exists, otherwise Facebook will keep generating the same album with the same name.

$album = $facebook->api($param);
if (!$album) {
    $album_details = array(
        'message'=> 'Your album description goes here',
        'name'=> $albumName
    );  
    $create_album = $facebook->api('/me/albums', 'post', $album_details);
    $album_uid = $create_album['id'];
} else {
    $album_uid = $album[0]['object_id'];
}

Once you've got the album id, you can upload your photo like so:

$photo_details = array(
    'message'=> 'Photo Description Goes Here',
    'image'=> '@' . realpath($theUploadFile)
);

$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);

I wrote a good tutorial that has this feature in it among many others. My photo upload features is built in with a multi-select and allows you to upload photos and videos at the same time. You can view the entire tutorial and download the package here: http://www.epixseo.com/index.php/facebook-php-3-3-1-and-javascript-sdk-graph-api-tutorial/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.