When I try to share a screenshot of my iOS app on Facebook I get the following response :
FB error: The operation couldn’t be completed. (facebookErrDomain error 368.)
Post Photo Code
NSMutableDictionary *params = [NSMutableDictionary
dictionaryWithObjectsAndKeys:fbImage, @"picture", fbContent, @"caption"
,nil];
[_facebook requestWithMethodName:@"photos.upload" andParams:params
andHttpMethod:@"POST" andDelegate:self];
I take the screenshot using
UIGraphicsBeginImageContext(self.view.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
The thing is, I am able to post the screenshot in my other app using the exact same code. So that would mean it is not solely because of fb server issues? Is there something I might be missing?
Edit I am also using FBConnect in the same project for sharing text using:
[_facebook dialog:@"feed" andParams:params andDelegate:self];
with params as:
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
url, @"link",
name, @"name",
caption, @"caption",
desc, @"description",
nil];
And it works absolutely fine.