I'm developing a Facebook app with Flash Builder where users can create 6 pictures and then publish them to their photo album.
The upload works fine but I get a different number of duplicates to my wall once the photos are published to the album. I only want to see a post to my wall with the last 3 photos that I've uploaded, in one row. What I get is sometimes 3 posts with the same photos, sometimes 4 etc... It is very weird as the post to the news feed or wall always behaves in a different way.
This is how I upload the photos
protected function uploadPhotos(event:MouseEvent):void {
var values6:Object = {caption:'caption', fileName:'FILE_NAME', image:img6};
Facebook.callRestAPI('photos.upload', handleUploadComplete6, values6, 'POST');
var values5:Object = {caption:'caption', fileName:'FILE_NAME', image:img5};
Facebook.callRestAPI('photos.upload', handleUploadComplete5, values5, 'POST');
var values4:Object = {caption:'caption', fileName:'FILE_NAME', image:img4};
Facebook.callRestAPI('photos.upload', handleUploadComplete4, values4, 'POST');
var values3:Object = {caption:'caption', fileName:'FILE_NAME', image:img3};
Facebook.callRestAPI('photos.upload', handleUploadComplete3, values3, 'POST');
var values2:Object = {caption:'caption', fileName:'FILE_NAME', image:img2};
Facebook.callRestAPI('photos.upload', handleUploadComplete2, values2, 'POST');
var values1:Object = {caption:'caption', fileName:'FILE_NAME', image:img1};
Facebook.callRestAPI('photos.upload', handleUploadComplete1, values1, 'POST');
}
Did anyone have the same problem? I would really like to find out what is going wrong here as I can't get any help from the Facebook API documentation/forum.
Thanks