I create a new action on my app with an object. it is pending approval with FB. Have posted a test action on the timeline before this, of course.
My problem is when I test the post it fails with the error:
FBSDKLog: Response <#1133> : The operation couldn’t be completed. (com.facebook.sdk error 5.)
[FBRequestConnection startForPostWithGraphPath:@"me/XXXX:share"
graphObject:action
completionHandler:^(FBRequestConnection *connection,
id result,
NSError *error) {
//[self.activityIndicator stopAnimating];
//[self.view setUserInteractionEnabled:YES];
NSString *alertText;
if (!error) {
alertText = [NSString stringWithFormat:@"Posted Open Graph action, id: %@",
[result objectForKey:@"id"]];
// start over
self.selectedFriends = nil;
//[self updateSelections];
} else {
alertText = [NSString stringWithFormat:@"error: domain = %@, code = %d",
error.domain, error.code];
}
[[[UIAlertView alloc] initWithTitle:@"Result"
message:alertText
delegate:nil
cancelButtonTitle:@"Thanks!"
otherButtonTitles:nil]
show];
}];
}
Have been breaking my brains out searching the net for the answer - is it not working because the action has not been yet approved?