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'm building an iPhone App where i want to add Facebook login. In viewDidLoad i've added:

    facebook = [[Facebook alloc] initWithAppId:@"MYAPPID" andDelegate:self];
    facebook.sessionDelegate=self;
    if ([defaults objectForKey:@"FBAccessTokenKey"] 
        && [defaults objectForKey:@"FBExpirationDateKey"]) {
        facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
        facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
    }

When the user taps a button i invoke a function that does:

    NSArray *permissions = [[NSArray arrayWithObjects:@"read_stream", @"publish_stream", @"offline_access",nil] retain];
    [facebook authorize:permissions ];

It launches safari and makes the facebook login; the problem is that when it returns to the app, it relaunches the app, while i need to return directly to my ViewController, not to the FirstViewController. What am i doing wrong?

share|improve this question
Thanks for downvoting .... whywhywhy? Was it "not constructive" as usual? – Cris Jun 15 '12 at 16:00

1 Answer

Found the answer in an old SO thread

In facebook.m :

- (void)authorize:(NSArray *)permissions {
    self.permissions = permissions;

    [self authorizeWithFBAppAuth:NO safariAuth:NO];
}
share|improve this answer

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.