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.

Can any one help me in this:

I used new FaceBook SDK, and there is no Session seen any where. How can we get Session key after logging in to Facebook.

Im using '- (void)fbDidLogin;' method after login to facebook.

Thanks in advance

share|improve this question

1 Answer

Assuming you are using the Facebook connect api. You'd have to create a FBSession object and initialize in either initWithNibName or ViewDidLoad. This object automatically gets populated with the session key once the user has been authenticated.

    FBSession *session = [[FBSession sessionForApplication:@"bla bla" secret:@"bla bla" 
                    delegate:self]retain];
share|improve this answer
IN new Facebook Sdk, there is no FBSession. There is many changes from old to new. – bharath gangupalli Dec 30 '10 at 12:46

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.