Device state: Facebook account is not set up on the device
Facebook app is installed on device but user is not logged in.
Facebook SDK: 3.1
When I call
[FBSession openActiveSessionWithReadPermissions:nil//basic read permissions
allowLoginUI:YES
completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
}];
The app switching occurs as it should. However, once the user logs in, the Facebook app does not switch back to my app. It just stays on the Facebook app.
If I manually switch back to my app, my completionHandler gets called.
Is there any way to force the switch back to my app once the login has occurred? This used to happen automatically on the old Facebook App.