Hiho
I have a big problem with the new Facebook SDK 3.2 for iOS 6 (I use the iPhone simulator for testing). I've implement the Facebook Login exactly like described in the how-to. The only difference is that I didn't implement it within the app delegate. I implemented the Facebook-Stuff in one seperate mm-file (but I've tested the code within the app delegate too -> same problem!).
That is what happen: If I try to login, a UIView (maybe it's a UIWebView) pops up in the middle of the screen and I can enter my Account-Credentials. As next comes the Permission-Confirming-Screen. I click the OK-Button and then comes the Error: "The operation couldn’t be completed. (com.facebook.sdk error 2.)" UserInfo=0x14bbd590 {com.facebook.sdk:ErrorLoginFailedReason=com.facebook.sdk:ErrorLoginNotCancelled}
I've already experiences with the old facebook-sdk v2. There where no problems to integrate! But with the new one and iOS 6 I can't get it to run :-(
I think one essential problem could be that the method openURL of the UIApplicationDelegate is not called! I've insert the AppID into the info.plist and added the URL Type too. It looks like this snippet:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb111111111111111</string>
</array>
</dict>
</array>
<key>FacebookAppID</key>
<string>111111111111111</string>
I've also analyzed the url with wireshark:
I also double-checked that the app-ids are equal on all relevant spots (info.plist/url/dev-site: Bundle ID)!
Don't know if its an important info but we don't use any xib-files in our app, because its an 3D-Game which uses our own 3d-engine. And the provided screen-orientation is landscape only. I use Xcode version 4.5.2 (4G2008a).
Any Ideas?
3 Additional Questions (maybe it helps me to get more infos):
How I can obtain more infos about whats going wrong? "com.facebook.sdk error 2" is not very helpful :-/
Is there an easy way to test the automatic redirect call of the openURL methods from the UIApplicationDelegate?
Is there a way to force the sdk to login with the safari-browser instead of the view?
thx in advance
martin