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.

Please help me this question! I want to create app login facebook, if device installed Facebook app, my app will call Facebook app when user login Facebook, if Facebook app is not installed, my app will show pop up login view, without sarafi?

share|improve this question
It similar at link: stackoverflow.com/questions/14214903/… – user1965400 Jan 10 at 3:36
u got the way or not? bcz i found it.. – Christien Jan 12 at 5:26

closed as not a real question by Mitch Wheat, Janak Nirmal, KatieK, Perception, Niranjan Kala Jan 10 at 6:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

If You use share kit then Go to facebook.m class in your SDK find this method:

- (void)authorize:(NSArray *)permissions
         delegate:(id<FBSessionDelegate>)delegate

Then replace your last line which is:[self authorizeWithFBAppAuth:YES safariAuth:YES];

With this line:[self authorizeWithFBAppAuth:YES safariAuth:NO; & check.

share|improve this answer
Sory..I'm using SDK facebook 3.1, not old SDK, I can't find facebook.m, I only find file.h..?? "share kit", what do you mean? sorry, i'm fresh man! – user1965400 Jan 10 at 3:56
Then try with method that @Paras joshi tell in above link... – Vishal Jan 10 at 3:59
Ya actually I give answer according to old share kit implementation... – Vishal Jan 10 at 4:02

This will handle opening a facebook session.

[FBSession openActiveSessionWithReadPermissions:nil
                                   allowLoginUI:YES
                              completionHandler:^(FBSession *session, FBSessionState status, NSError *error) {
                                  if (status == FBSessionStateOpen || status == FBSessionStateOpenTokenExtended)
                                  {
                                      NSLog(@"Logged in!");
                                  }
}];

Make sure your app delegate handles the callback url also.

- (BOOL) application:(UIApplication *)application handleOpenURL:(NSURL *)url
{
    return [FBSession.activeSession handleOpenURL:url];
}
share|improve this answer
where to use this [FBSession openActiveSessionWithReadPermissions:nil part .. I am using Facebook SDK SessionLoginSample Part... – Christien Jan 10 at 6:08
Kris Jurgowski: Can you give me a sample code at "NSLog(@"Logged in!")"...at here, I can't code anthing..thanks! – user1965400 Jan 10 at 6:35
Here's a way to print out your name: '[[FBRequest requestForMe] startWithCompletionHandler:^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *user, NSError *error) { if (!error) { NSLog(@"%@", user.name) } }];' – Kris Jurgowski Jan 10 at 7:10
I want to show pop up webview to login facebook...can I? thanks! – user1965400 Jan 10 at 8:20

If you are using the Facebook SDK you can use FBSession to open a session.

- (void)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {

// NSLog(@"openSessionWithAllowLoginUI:");

NSArray *permissions = [[NSArray alloc] initWithObjects:

                        @"user_photos",
                        @"publish_actions",
                        @"read_stream",
                        @"friends_photos",
                        @"email" ,

                        nil];//You can add similar permissions according to your app.

[FBSession setActiveSession:[[FBSession alloc] initWithPermissions:permissions]];

[[FBSession activeSession] openWithBehavior:FBSessionLoginBehaviorForcingWebView

                          completionHandler:^(FBSession *session,

                                              FBSessionState state,

                                              NSError *error) {

                              NSLog(@" state=%d",state);

                              // handle the completion handler...

                          }];

}

This will open the Facebook app if it is installed in your phone and will show the pop up if you are not logged in. It will use the safari if the native app is not installed in your device.

Before doing any action with Facebook always check whether the FBSession is open and active using: if (FBSession.activeSession.isOpen)

share|improve this answer

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