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 want to implement SSO in our current website so that we can login to that website using a Facebook account. Can you please provide the steps which I need to follow to implement it?

share|improve this question

4 Answers

up vote 1 down vote accepted

Mixu had meticulously explained single sign-on in his 3 paged blog:

1) http://blog.mixu.net/2010/12/27/implementing-facebook-login-single-sign-on-part-1/

2) http://blog.mixu.net/2011/01/03/implementing-facebook-login-part-2/

3) http://blog.mixu.net/2011/01/09/implementing-facebook-login-part-3/

UPDATE

SSO is simply logging a user with facebook and maintaining a site-wide session on your server and cookie on user's machine. This session shall remain valid for all pages on your website. You can use this codeplex example in C# to get you going on the right track: http://facebooktoolkit.codeplex.com/

Also see this answer (in C#) for more info: http://stackoverflow.com/a/369691/842837

share|improve this answer
steps they have shown in php...my application is in c#. do u have any sample application in which the integration is been done in c#. I have to do a demo on Monday so i m screwed big time. – Akansha Gulati Mar 13 '12 at 8:25
@AkanshaGulati I have updated answer. Please go through it again. – jerrymouse Mar 13 '12 at 10:13
If it answers your question, consider upvoting and marking it as answer. – jerrymouse Mar 13 '12 at 10:13
thanks!!......... – Akansha Gulati Mar 14 '12 at 4:36
@AkanshaGulati Glad it helped. Please consider upvoting and marking it as answer. (Tick the checkbox) – jerrymouse Mar 15 '12 at 10:31

There are many ways you can implement this. These architectures are explained in the Facebook developer page.

The simplest way is to implement it using javascript sdk. Here is a link on how to login using Facebook account.

share|improve this answer

Please try the steps explained in this blog.

share|improve this answer
steps they have shown in php...my application is in c#. do u have any sample application in which the integration is been done in c#. I have to do a demo on Monday so i m screwed big time. – Akansha Gulati Mar 13 '12 at 8:25

Try with this link
https://developers.facebook.com/docs/guides/web/

share|improve this answer
steps they have shown in php...my application is in c#. do u have any sample application in which the integration is been done in c#. I have to do a demo on Monday so i m screwed big time. – Akansha Gulati Mar 13 '12 at 8:23

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.