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 am using the ios sdk 3.0 to post simple text to user facebook wall , below is the code is use to post to facebook

[FBRequestConnection
 startForPostStatusUpdate:text completionHandler:^(FBRequestConnection *connection,
                     id result,
                     NSError *error)
{
    if (!error)
    {
        NSLog(@"the status posted");
    }
}];

but i get the error from facebook like

FBSDKLog: Response <#1115> : The operation couldn’t be completed. (com.facebook.sdk error 5.) . any help would be appreciated.

share|improve this question
   
Not an answer to you question. I'm having the same problem, and I posted here. stackoverflow.com/questions/12540895/… – Tony Xu Sep 30 '12 at 4:36

1 Answer

The bug is if you try to share an NSString.

This works:

[FBRequestConnection startForPostStatusUpdate:@"test" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) { }];

This gives you the error:

NSString *testString = @"test"; [FBRequestConnection startForPostStatusUpdate:testString completionHandler:^(FBRequestConnection *connection, id result, NSError *error) { }];

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.