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'm trying to publish a story but Open Graph returning me this error: domain = com.facebook.sdk, code = 5

I use these permissions:

 [NSArray arrayWithObjects: @ "status_update" @ "publish_actions" @ "publish_stream" @ "user_likes" @ "create_event", nil];

And the code I use to create the history:

NSMutableDictionary * item = [FBGraphObject graphObject];      
[Item setObject: @ "http://mysite.com.br/cardapio/6/burger-de-carne" forKey: @ "object"];

NSMutableDictionary * action = (<FBOpenGraphAction> NSMutableDictionary *) [FBGraphObject graphObject];
 [Action setObject: item forKey: @ "Like"];

  [FBRequestConnection startForPostWithGraphPath: @ "me/og.like" graphObject: action  completionHandler: ^ (* FBRequestConnection connection,   id result,  NSError * error)
 {  NSString * alertText;

                              if(! error) 
                             { alertText = [NSString stringWithFormat: @ "Open Graph Posted action, id:% @", [Result objectForKey: @ "id"]]; 
                              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];
  }];
share|improve this question
What's the text of the error you're receiving? – Igy Nov 19 '12 at 19:09
2012-11-19 16:57:29.521 myApp[14696:c07] Error: HTTP status code: 400 2012-11-19 16:57:29.524 myApp[14696:c07] Error Domain=com.facebook.sdk Code=5 "The operation couldn’t be completed. (com.facebook.sdk error 5.)" UserInfo=0x6851fe0 {com.facebook.sdk:ParsedJSONResponseKey=<CFBasicHash 0x684eb60 [0x179fb48]>{type = mutable dict, count = 2, entries => 1 : <CFString 0x5b91c [0x179fb48]>{contents = "code"} = <CFNumber 0x684db30 [0x179fb48]>{value = +400, type = kCFNumberSInt32Type} – Nagi Nov 19 '12 at 19:58
I mean the error from Facebook's side - i don't think that's an error from the server? – Igy Nov 19 '12 at 20:05
idea what is ?? – Nagi Nov 19 '12 at 20:12
Could you show code around how you set the session? – C Abernathy Nov 21 '12 at 21:01
show 1 more comment

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.