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 seen many have been asking this question but I m confused... I want to integrate facebook login in my iphone app.Im need to provide login options i.e login with our website account or facebook login and use our app.But I have gone through google and found the tutorials providing facebook login feature with the total access (like post ,update etc) i.e login with facebook and do respective facebook activities.But I dont need all of them.I just need the functionality of login with user facebook account and access our app.And one more thing I have seen to download facebook sdk from git and copy FBConnect folder.But there is not such folder in it.I m confused

where can I find the best tutorial which suites my particular criteria..?

Please guide me in this aspect.

share|improve this question

3 Answers

I think this will help you,have a look : http://developers.facebook.com/docs/tutorials/ios-sdk-tutorial/

share|improve this answer

You can download the facebook sdk from here : http://developers.facebook.com/ios/

Then to bypass fb app and safari and to continue with your app you can change the code in Facebbok.m

  [self authorizeWithFBAppAuth:YES safariAuth:YES];

to

  [self authorizeWithFBAppAuth:NO safariAuth:NO];

in the method

   - (void)authorize:(NSArray *)permissions
     delegate:(id<FBSessionDelegate>)delegate
share|improve this answer
I have downloaded the sdk.But do I need to copy the whole sdk in my project by drag and drop ? – Sindhia Dec 12 '12 at 7:16
@Sindhia the one you just downloaded is the latest sdk, you might want to install that sdk before using it in your project. – abi_anarchy95 Dec 12 '12 at 7:31
Ya I have installed it also in documents folder.Now should I need to copy it in my project? – Sindhia Dec 12 '12 at 7:33
you can add the Facebook SDK for iOS Framework by dragging the FacebookSDK.framework folder from the SDK installation folder into the Frameworks section of your Project Navigator. Here is the tutorial : developers.facebook.com/docs/getting-started/… – abi_anarchy95 Dec 12 '12 at 7:39
It contains all samples and sdkframework and all that.But I dont find any facebook.m folder in it – Sindhia Dec 12 '12 at 7:39

If you want to implement to access your app login via facebook, firstly you should get the id(for example:19292868552) of user after succefully facebook login. And with the help of id you can uniquely identify the user in your database.

share|improve this answer
I have got app id ..Can u please suggest me a good tutorial related to it – Sindhia Dec 12 '12 at 7:06

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.