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.

So I'm trying to get facebook working with my new app, and I just cant figure this out. I got every thing done like in the tutorial docs on their website. And when I start the app, I get a "Error: HTTP status code 400"; and nothing more to it. I read all over the place that this is a serverside bug on facebook, but seriously? Some people have this working?

This is my code anyway:

FBSession* pFacebookSession = [[FBSession alloc] init];
[FBSession setActiveSession: pFacebookSession];
if (FBSession.activeSession.state == FBSessionStateCreatedTokenLoaded)
{        
     NSLog(@"openWithCompletionHandler start.");
     [FBSession.activeSession openWithCompletionHandler:^(FBSession *session,
                                                                FBSessionState status,
                                                                NSError *error)
                 {

                     NSLog(@"openWithCompletionHandler FINISHED!");
                 }];    


   }

not sure if this is what it is exactly to look like.

share|improve this question
What tutorial did you follow, exactly? Because the code from the official tutorial looks completely different. – patric.schenke Feb 11 at 13:31
developers.facebook.com/docs/tutorials/ios-sdk-tutorial try this tutorial its working in my app without any error – Naresh Kukkala Apr 16 at 7:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.