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.