I was using the Facebook SDK 3.0 in one of my Apps, and everything was working fine. It was redirecting the user to the Facebook app if installed or to the mobile website if not.
Last week I integrated the new SDK 3.1 to have native integration with the Facebook account. To do this I moved from:
[FBSession openActiveSessionWithPermissions:permissions
allowLoginUI:YES
completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
/* My code here */
}];
Which is now deprecated to the new:
[FBSession openActiveSessionWithPublishPermissions:permissions
defaultAudience:FBSessionDefaultAudienceFriends
allowLoginUI:YES
completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
/* My code here */
}];
On iOS 5, nothing changed, perfect. On iOS 6 it worked on my device, but I got some users who report that the system was asking them permissions but they where not able to connect.
And indeed, I have a video, where even clicking "Ok" when the system ask for Facebook permissions, the app do not get access to the account, and is not even registered in the System Preferences.
Here is the video: http://www.youtube.com/watch?v=JUHF9KNNg6M
If I remove the account from the system, everything works like previously expected on the Facebook SDK 3.0.
Has someone also encountered this issue? Or do you have any idea how this can be fixed?