I am developing an iOS application in which I need to support uploading multiple photos to Facebook from the application.
From the many forums and doc discussed, I know that using a batch request is possible.
For the first batch request with multiple photos, a default album is created and photos are added to this album. At the next request, all images uploaded using a batch request are added to this album, which is created by default during the previous one.
So, all the images are grouped into one album. Thus, only one entry is displayed on the Facebook timeline.
But I want to show them as a separate record, not just one album record. For example, if we upload 2 photos from Facebook, they will be displayed as a separate entry, etc.
So, I need how to upload some photos to Facebook, for example, a message on the timeline, not like publishing an album using the Facebook iOS SDK?
source
share