[Screenshoot links at the bottom]
I've been trying to integrate Facebook into an existing iOS application. After integrating it following the steps described in Login into FB with iOS and then in Feed dialog in iOS I got the app to show the dialog, but breaking after pressing the share button: ![non-working app old web view] ![non-working app after sharing]
I tried doing the same in an empty app, and it worked perfectly. It even shows the new nicer dialog: ![working app]
The objective-c code is exactly the same, and both apps run in the same device. The only difference might be in a project setting, or project configuration. But I haven't found any differences yet. Any idea why this might be breaking? Any idea how FB chooses to use the new or old "look"?
I use the same App ID in both apps, I added the fbAPPID link to those apps, and both have the same bundle identifier. All that I can think of, it's exactly the same in both apps, yet I can run both at the same time, and one works and the other does't. I've modified the apps to use the FB SDK source code, any ideas what can I check/debug there to understand what and why is happening?
I'm not allowed to post images, so please check them at:
http://i49.tinypic.com/a9o85s.png
http://i47.tinypic.com/2rpwtah.png
http://i45.tinypic.com/25kk5t5.png
Update: I open the FBSession with:
NSArray* permissions = @[FacebookPublishActionsPermission];
FBSessionStateHandler completionCallback = ^(FBSession *session, FBSessionState state, NSError *error) {
[self facebookSessionStateChanged:session state:state error:error];
};
[FBSession openActiveSessionWithPermissions:permissions
allowLoginUI:YES
completionHandler:completionCallback];
Then on the callback I do:
facebook = [[Facebook alloc] initWithAppId:AWFacebookAppId andDelegate:nil];
facebook.accessToken = FBSession.activeSession.accessToken;
facebook.expirationDate = FBSession.activeSession.expirationDate;
and then:
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
AWFacebookAppId, @"app_id",
@"http://developers.facebook.com/docs/reference/dialogs/", @"link",
@"http://fbrell.com/f8.jpg", @"picture",
@"Facebook Dialogs", @"name",
@"Reference Documentation", @"caption",
@"Using Dialogs to interact with users.", @"description",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
The configuration is at: h t t p : / / i47.tinypic.com/fntcz.png (sorry about the spaces, but SO won't let me put more hyperlinks). If you need any more data or code please tell me.