I've a universal iOS app that uses ShareKit to share an image and a line of text:
SHKItem *item = [SHKItem image:imageToShare title: shareTitle];
if (destination == K_FACEBOOK) {
[SHKFacebook shareItem: item];
}
The image is a UIImage of not more than 512 x 512, and the line of text is < 200 characters, so the total payload is ~50k. When I share to email or twitter it's near instantaneous, but when I share to Facebook, it can end up taking somewhere between 20-30 seconds.
In my configuration for the Facebook sharer I've disabled using the Facebook app and Safari, so everything is presented by ShareKit itself.
Is there something that different in the process for uploading to Facebook that could cause this delay?