I'm following the tutorials set out on the facebook SDK:
Login with facebook using the ios SDK
Everything seems to work okay, except on testing my app, I get HTTP error 400 (or error code 5) on my first try at attempting to posting to the facebook wall. If I press my "Post" button again in the app, the second time, everything seems to work. On first try, the user is sent to the facebook app for authentication, and switches back to the app, then gives me the HTTP 400. On second try, there is no app switch, and the message is posted to the facebook wall as expected.
I'm trying to figure out why my app won't post to the wall/timeline on the first try. My code is the same as that in the tutorial.
Edit:
Forgot to mention, I'm using one button to both authenticate and post to the wall - this is the code in the IBAction:
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
// The user has initiated a login, so call the openSession method
// and show the login UX if necessary.
[appDelegate openSessionWithAllowLoginUI:YES];
[FBRequestConnection startWithGraphPath:@"me/feed" parameters:postParams HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection,id result,NSError *error)
{
NSString *alertText;
if (error) {
alertText = [NSString stringWithFormat:
@"error: domain = %@, code = %d", error.domain, error.code];
} else {
/*alertText = [NSString stringWithFormat:
@"Posted action, id: %@", [result objectForKey:@"id"]];*/
alertText = @"Posted!";
}
// Show the result in an alert
[[[UIAlertView alloc] initWithTitle:@"Facebook" message:alertText delegate:self cancelButtonTitle:@"OK!" otherButtonTitles:nil] show];
}];