Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Also I have opened the FBSession in the Appdelegate with publish_actons approval. I am using my Facebook login to test the action from the native iOS app in test mode. When I posted a test action from FB I used the App Access Token - it worked. Is there something that I am missing? I tried the full graph.facebok.com/me/NS:action which returns no error, but I get a null id for the post and no object in timeline.. – Ramesh Babu Oct 19 '12 at 5:30
I am still trying with no luck - used the test user to login and post using the publish_actions permissions [FBSession openActiveSessionWithPublishPermissions:[NSArray arrayWithObject:@"publish_actions"] defaultAudience:FBSessionDefaultAudienceFriends allowLoginUI:YES completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {...} – Ramesh Babu Oct 23 '12 at 9:50
Which version of the Facebook SDK are you using? – C Abernathy Oct 26 '12 at 16:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.