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];
}];