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.

In my app i have to make a facebook sync option.By clicking a button users can login there FB and authenticate the app(I have created an app in developer.facebook.com)

But it is not working properly,Adding my codes here Login window is not coming,but redirected to facebook and it shows "an error encountered"

AppDelegate.h

 #import <UIKit/UIKit.h>
 #import <FacebookSDK/FacebookSDK.h>

  @class ViewController;

   @interface AppDelegate : UIResponder <UIApplicationDelegate>

  @property (strong, nonatomic) UIWindow *window;

   @property (strong, nonatomic) ViewController *viewController;
   - (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI;

AppDelegate.m

#import "AppDelegate.h"

#import "ViewController.h"

NSString *const FBSessionStateChangedNotification =@"com.nithin.FacebookFacebook:FBSessionStateChangedNotification";


    @implementation AppDelegate


- (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {
  return [FBSession openActiveSessionWithPermissions:nil
                                      allowLoginUI:allowLoginUI
                                 completionHandler:^(FBSession *session,
                                                     FBSessionState state,
                                                     NSError *error) {
                                     [self sessionStateChanged:session
                                                         state:state
                                                         error:error];
                                 }];
    }





     - (void)sessionStateChanged:(FBSession *)session
                  state:(FBSessionState) state
                  error:(NSError *)error
    {
    switch (state) {
    case FBSessionStateOpen:
        if (!error) {
            // We have a valid session
            NSLog(@"User session found");
        }
        break;
    case FBSessionStateClosed:
    case FBSessionStateClosedLoginFailed:
        [FBSession.activeSession closeAndClearTokenInformation];
        break;
    default:
        break;
    }

     [[NSNotificationCenter defaultCenter]
     postNotificationName:FBSessionStateChangedNotification
     object:session];

     if (error) {
    UIAlertView *alertView = [[UIAlertView alloc]
                              initWithTitle:@"Error"
                              message:error.localizedDescription
                              delegate:nil
                              cancelButtonTitle:@"OK"
                              otherButtonTitles:nil];
         [alertView show];
      }
     }

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

ViewController.h

 #import <UIKit/UIKit.h>

@interface ViewController : UIViewController
 -(IBAction)authButtonAction:(id)sender;

 @end

ViewController.m

#import "ViewController.h"
#import "AppDelegate.h"
@interface ViewController ()

@end

@implementation ViewController


 - (IBAction)authButtonAction:(id)sender {
 AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];

  [appDelegate openSessionWithAllowLoginUI:YES];
  }

used tutorial from here

share|improve this question

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.