Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app I have to give option to login with facebook and once the login is done from the facebook, the user should be Navigate back to the app .how it is possible..I have Installed Facebook SDK and Used the Facebook Login sample(SessionLoginSampl) in my code to login from facebook ..it works fine..

Now i want when i login sucessfully from FB it should return back to the app??

How it is possible.. if i change in the..

If(appDelegate.session.isOpen)
//navigate here for tab bar...but does not work
share|improve this question

1 Answer

In your .plist file you need to add a row called "URL types" it should look something like this. This will allow the Facebook app or Mobile safari to know where to take you after the login process is finished enter image description here

Also in your AppDelegate you need to add these methods

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
    return [FBSession.activeSession handleOpenURL:url];
}

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
    return [FBSession.activeSession handleOpenURL:url];
}
share|improve this answer
hey it works...thanks...and how can i logout from fb .when app is close....or bcz everytime the user get logged in when i enter into app – SameSung Vs Iphone Dec 20 '12 at 18:20
Trying to detect when the user closes the app out might be harder than simply telling the app to logout when the app starts. Have you tried logging the user out in the applicationDidFinishLaunching method when the app starts? – Zhang Dec 21 '12 at 8:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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