Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, so I have managed to get Facebook to create an album on the page I maintain, and can upload pictures to it all using the PHP SDK. But my problem is this. If I manually add an album of photographs, Facebook automatically generates a rather nice wall post displaying the cover and three small images. However, if I use the PHP SDK, no such post is made.

Here is a code snippet showing how I added the album etc:

$newalbumdata = array( 
'access_token'=>$mypageaccesstoken,
'message'=> "Album blurb",
'name'=> "NEW ALBUM");

$newalbum = $facebook->api('/'.$myfanpageid.'/albums', 'post', $newalbumdata); 
$fanalbumid = $newalbum['id'];  



 $newphotodata = array(
 'access_token'=>$mypageaccesstoken,
 'message'=> 'Greetings!',
 'no_story' => 1,
 'aid' => $fanalbumid,
 'image'=> '@'.realpath('pic1.jpg')
 ); 

$uploadedphoto = $facebook->api('/'.$fanalbumid.'/photos/', 'post', $newphotodata);

$newphotodata = array(
 'access_token'=>$mypageaccesstoken,
 'message'=> 'The second pic',
 'no_story' => 1,
 'aid' => $fanalbumid,
 'image'=> '@'.realpath('pic2.jpg')
 ); 

 $uploadedphoto = $facebook->api('/'.$fanalbumid.'/photos/', 'post', $newphotodata);

Anyway, that all work once the usual auth conditions have been met, but what doesn't happen is the nifty post to the timeline showing the big picture and a little one. I do get a post telling me I have added two pictures to the album, but thats it.

Incidently, if I don't use the no_story = 1 parameter when I upload the pics, then I get a timeline pic EACH TIME a picture is added.

Thinking about it, this does possibly suggest a solution. Can I add more than one picture at a time?

share|improve this question
I'm still stuck on this if anybody can help? – Facebook Answers Dec 6 '12 at 15:01

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.