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.

This question look duplicate and ye it is 50% duplicate because there is no good answer I found any where.

let me divide my question in three part.

Current Situation: I have implemented sign up screen with Email, Date of birth, Gender and Zipcode.
This is working very nice. I have also implement share feature in facebook and twitter in iOS 5 and 6
But now I want to implement it with facebook and twitter like
shown in following example screen:

Login With Facebook

What is problem: I want to know how can I implement login with facebook in iOS 5. twitter is integrated with ios 5 and 6, Facebook with iOS 6 so that is not big deal (right now I think so). I have already implemented share feature for both twitter and facebook for iOS 5 & 6. so what more I need to do to implement login.

What I get in response: As I said I need Email, Date of birth, Gender and Zipcode at time of signup. How can I get this information if I use login with facebook and twitter. What should I do if user have not given or block this information of this social site.

Thanks.......

share|improve this question

2 Answers

up vote 4 down vote accepted

I had implemented this feature in my app. It will helps u. Do with steps

Step1: First Download Facebook SDK for iOS from this fbSDK

I have uploaded it because i already implemented it in my APP.

Step2: In ur Application AppDelegate.h write this: make property of facebook object

#import <UIKit/UIKit.h>
#import "Facebook.h"

@interface OutpearAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    IBOutlet UINavigationController *navigationController;


}
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) Facebook *facebook;
+(DemoAppDelegate*)getAppDelegate;

Step3: In ur application AppDelegate.m write this:

synthesize facebook;

and in ur method "applicationDidFinishLaunching" write this

      //initialize facebook wit app ID
    facebook=[[Facebook alloc]initWithAppId:FB_APP_KEY andDelegate:nil];
  //here FB_AP_Key is ur facebook app key

and release facebook in dealloc

Step4: Where u want to login with facebook write this function:

- (void)loginWithFacbookIdClicked
{
    [DemoAppDelegate getAppDelegate].facebook.sessionDelegate=self;

    if(isInternetAvailable)
    {
        if([[DemoAppDelegate getAppDelegate].facebook isSessionValid])
        {
            //[facebookIntegration getUserFacebookPersonalInfo];
             NSLog("User already logined with facebook");
        }
        else
        {
            [[DemoAppDelegate getAppDelegate].facebook authorize:[NSArray arrayWithObjects:@"read_stream",
                                 @"publish_stream",
                                 @"email",
                                 @"user_birthday",
                                 @"friends_about_me",
                                 @"friends_activities",
                                 @"friends_likes",
                                 nil]];
        }
    }
    else
    {
       NSLog("No Internet Connection");
    }

}

Step5: after login facebook SDK delegate methods automatically called. Do ur stuff in delegate methods

- (void)fbDidLogin
{
   NSLog("Logined into facebook");
//Do ur stuff

}

-(void)fbDidNotLogin:(BOOL)cancelled
{
    DLog(@"Login Cancelled");
}

-(void)fbDidExtendToken:(NSString *)accessToken expiresAt:(NSDate *)expiresAt
{

}

-(void)fbSessionInvalidated
{

}

-(void)fbDidLogout
{

}

I hope this will helps u

share|improve this answer
I am using your code for facebook sign up and for uploading status. Its working properly. Thanks for it. But now I want to like a feed through iOS app using your code. Can you give me some suggestions for it. Thanks in advance. – Himanshu Mahajan Apr 17 at 5:02

Easiest way is to pull this link from github. It contains a few sample code. That will help you up and running in no time. Also check out this Facebook tutorial and this

share|improve this answer
It look help-full let me check this. – CRDave Jan 11 at 6:55

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.