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 have an application where users need to login/create an account in order to use it. I am trying to implement Connect with Facebook through ShareKit 2.0. Do you know if this is possible and can you please point me in the right direction? Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes you can use Facebook as a point of login to any app. Before doing that you need to register your app in Facebook Developers page. More info here : http://developers.facebook.com/

After creating an App entry in Facebook, save the App id for setting configuration in Sharekit.

Sharekit uses a defaultConfiguration file(where all configurations related to your app resides) and it recommends to override that class for setting your app-specific defines.

    Link: https://github.com/ShareKit/ShareKit/wiki/Configuration
    Once after Subclassing the configuation file, add your Facebook App id there. (I guess secret key is  not required as its by default disabled after creating an Facebook app).

Once you login to Facebook via Sharekit,you will get the token(it will be saved in the NSUserdefaults with a key - @"kSHKFacebookAccessToken" ) and if you need more data from facebook, you can subclass SHKFacebook class and access data from Facebook with the access token.

For logging in via Sharekit to Facebook,You need to do this.

       SHKSharer *service = [[[SHKFacebook alloc] init] autorelease];
        if(![service authorize]) //This will prompt for login if token was not saved or if it got expired. 
        {
              service.shareDelegate = self; //implement the delegate so that once after login you will get to know when to fetch token.
        }
        else
        {
              //Directly access the token with the key in NSUserdefaults and use this.
        }

Hope this helps!

Update: If you want to use Sharekit only for this option(for FB Log-in), I would recommend to use Facebook SDK instead. Sharekit makes life easier for sharing among different Sharing services!

share|improve this answer
So after getting the access token I can use it to get info like name & email from facebook? – Andrei Filip Aug 16 '12 at 14:35
Yes You can... but you need to override SHKFacebook class if you need inner details of Facebook(for using FB SDK). Sharekit makes life easier for sharing only! – Ayyappa Aug 17 '12 at 5:58
Well, I also need to share on facebook, twitter and email so I can just go ahead and work on overrideng SHKFacebook...Thanks – Andrei Filip Aug 17 '12 at 12:15
you do not need to subclass SHKFacebook, if you need username etc. [SHKFacebook getUserInfo] is enough. More info in ShareKit 2.0 FAQ. However, you have to use ShareKit 2.0. – Vilém Kurz Aug 19 '12 at 20:16
Thanks kurz for the info. For getting the extra info other than just user details we need to.for ex fetching the friends list. – Ayyappa Aug 20 '12 at 4:37

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.