I have two versions of my iPhone app, one is for the appstore and the other an ad-hoc version for internal testing. They have: - Same FB App ID for both (they both communicate with same backend) - Two different bundle IDs (so they can both be installed on device) - Different URL suffixes (empty and 'adhoc')

They both worked properly with login, but when I changed the iOS Bundle ID on the app page on FB admin tool it obviously stopped working: I got "fb_APP_ID_SUFFIX://authorize#error=unknown%5Ferror" as the URL before it called to fbDidNotLogin, on the test app.

If I don't put the iOS bundle ID it works. Do I have any option to still protect the bundle ID and have the other app working?

link|improve this question

60% accept rate
1  
Why not create 2 apps in Facebook? – logancautrell Oct 27 '11 at 20:36
Because I want it to be exactly the same as the App Store version, it communicate with the same server which communicates with the same FB app. – elado Oct 28 '11 at 18:12
feedback

1 Answer

Don't use the single sign on feature, force them to display pop-up in app instead.

Find this method in Facebook.m and replace

- (void)authorizeWithFBAppAuth:(BOOL)tryFBAppAuth
                safariAuth:(BOOL)trySafariAuth {
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                             _appId, @"client_id",
                             @"user_agent", @"type",
                             kRedirectURL, @"redirect_uri",
                             @"touch", @"display",
                             kSDK, @"sdk",
                             nil];

NSString *loginDialogURL = [kDialogBaseURL stringByAppendingString:kLogin];

if (_permissions != nil) {
  NSString* scope = [_permissions componentsJoinedByString:@","];
  [params setValue:scope forKey:@"scope"];
}

if (_urlSchemeSuffix) {
  [params setValue:_urlSchemeSuffix forKey:@"local_client_id"];
}
[_loginDialog release];
_loginDialog = [[FBLoginDialog alloc] initWithURL:loginDialogURL
                                      loginParams:params
                                         delegate:self];
[_loginDialog show];
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.