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.

I am using the latest Facebook iOS SDK 3.0

I need a help in in the login process:

First I declare this property in AppDelegate.h:

@property (nonatomic, strong) FBSession *session;

and in ViewController class I get this to use it in the code as this:

AppDelegate *delegate = [[UIApplication sharedApplication]delegate];
[delegate.session someproperty];

I also have this method in ViewController that get called from viewDidLoad:

-(void)login
{
  AppDelegate *delegate = [[UIApplication sharedApplication]delegate];
  [delegate.session accessToken];
  NSLog(@"%d",delegate.session.isOpen);
 if (!delegate.session.isOpen)
   {
    delegate.session = [[FBSession alloc] init];
    if (delegate.session.state == FBSessionStateCreatedTokenLoaded)
    {
        [delegate.session openWithCompletionHandler:^(FBSession *session,
                                                      FBSessionState status,
                                                      NSError *error) 
 {
            NSLog(@"%d", delegate.session.isOpen); // First Line //////////////////
        }];
}
    NSLog(@"%@", delegate.session.description);   // Second Line //////////////////
}
}

After the facebook app get authorized the firs NSLog print zero, and the second NSLog indicate that the session state is FBSessionStateCreated not FBSessionStateOpen?

this is the output for the second NSLog:

2012-08-16 18:37:24.327 Facebook3[2418:f803] <FBSession: 0x6890ff0, state:    FBSessionStateCreated, loginHandler: 0x0, appID: 193716877424306, urlSchemeSuffix: , tokenCachingStrategy:<FBSessionTokenCachingStrategy: 0x6890f20>, expirationDate: (null), refreshDate: (null), attemptedRefreshDate: 0001-12-30 00:00:00 +0000, permissions:()>

What I am missing here.

Note : in the app setting at https://developers.facebook.com I configure the app as this: 1- Configured for iOS SSO: Enabled 2- iOS Native Deep Linking: Enabled 3- iOS Bundle ID : com.mycompany.appname

share|improve this question

2 Answers

up vote 2 down vote accepted

i used this framework for my project. it works properly. this is my related code

   -(IBAction)logIn:(id)sender;
{
    AppDelegate *appdelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    if (!FBSession.activeSession.isOpen) {
        [appdelegate sessionOpener];
    }
    else {
        [self loginHelp];
    }

and my sessionOpener function is;

    -(void) sessionOpener
{

    [FBSession sessionOpenWithPermissions:nil
                        completionHandler:^(FBSession *session,
                                            FBSessionState status,
                                            NSError *error) {
                            // session might now be open.
                            if (!error) {
                                [self.viewController loginHelp];
                            }
                        }];

     NSLog(@"%d", FBSession.activeSession.isOpen);
    NSLog(@"%@", FBSession.activeSession.description );
}

it works for me. may be helpful to you.

and my console print is:

     1
2012-08-16 22:24:55.899 TaraftarlikOyunu[838:c07] <FBSession: 0xd2512c0, state: FBSessionStateOpen, loginHandler: 0xd250240, appID: 433294056715040, urlSchemeSuffix: , tokenCachingStrategy:<FBSessionTokenCachingStrategy: 0xd24fda0>, expirationDate: 2012-10-15 19:02:34 +0000, refreshDate: 2012-08-16 19:05:03 +0000, attemptedRefreshDate: 0001-12-30 00:00:00 +0000, permissions:(
    )>
share|improve this answer
thnx for your answer I will try it ,,, but is the different between using FBSession and instance of FBSession class? – MohamMad Salah Aug 16 '12 at 18:08
have you got a - (void)sessionStateChanged:(FBSession *)session state:(FBSessionState) state error:(NSError *)error – meth Aug 16 '12 at 18:12
Yes I have one in the ViewController class but it never get called, do you know why? – MohamMad Salah Aug 16 '12 at 18:35
it should be in the appdelegate. because you define the session in appdelegate. – meth Aug 16 '12 at 18:37
I put it as you mentioned AppDelegate but it doesn't fire !!! – MohamMad Salah Aug 16 '12 at 18:44
show 5 more comments

I had the same problem as you and I had mixed between using FBSession and instance of FBSession when calling handleOpenURL. I changed from

- (BOOL)application:(UIApplication *)application
        openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication
     annotation:(id)annotation {
    [FBSession.activeSession facebookSession handleOpenURL:url];
}

to this

- (BOOL)application:(UIApplication *)application
        openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication
     annotation:(id)annotation {
    [session facebookSession handleOpenURL:url];
}
share|improve this answer
2  
[session facebookSession handleOpenURL:url] is syntactically not correct. – Moritz Sep 21 '12 at 10:13
1  
I agree @Moritz – Daniel Nord Dec 29 '12 at 12:33
is session an ivar? – Sabobin Mar 27 at 15:30

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.