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 haven't any problems with FB login until now. After i updated to the newest SDK first i received an error in the FB app on the device with iOS 6 while login in. Now the when i tap facebook in the view i just get an error that something went wrong and the FB app doesn't open. I don't see any errors being reported. This is my code to login

if(![PFUser currentUser]){
    MyLoginViewController *logInController = [[MyLoginViewController alloc] init];
    logInController.delegate = self;
    logInController.signUpController.delegate = self;
    logInController.fields =  PFLogInFieldsFacebook|PFLogInFieldsDismissButton;
    logInController.facebookPermissions = [NSArray arrayWithObjects:@"user_about_me",@"status_update",@"user_birthday", nil];
    [self presentModalViewController:logInController animated:YES];
}

This problem might have to do with changes to fb sdk 3.1 and write permissions but i am not sure. Any suggestions would be greatly appreciated!

Thank You!

share|improve this question
Did you ever figure anything out? – FreeAsInBeer Nov 3 '12 at 2:03
Check out facebook permissions in the iPhone settings page. I think my app was disabled there. Try to logout from facebook on the phone and login again. If that doesn't work let me know i'll post the code that i am using to authenticate. – Yan Nov 3 '12 at 13:47
Yeah, I figured this out last night shortly after I posted. The issue was that my application wasn't allowed to access the Facebook data in iOS 6. Thanks! – FreeAsInBeer Nov 4 '12 at 0:39

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.