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.

How does stackoverflow.com allow new users to login into Stack Overflow using their Gmail or Facebook or Yahoo accounts? I am working on a little project website and I was curious how Stack Overflow does this. Do I need to get permission from these companies to do this or can I just do it?

share|improve this question

3 Answers

up vote 16 down vote accepted

StackOverflow (and all other StackExchange sites) use OpenID.

OpenID is a decentralized authentication protocol that makes it easy for people to sign up and access web accounts.

Yahoo, Google and facebook are all OpenID providers, so simply implementing it on your site will be enough for your users to be able to login using them (and any other OpenID provider).

There is no need to get permission - the permission will be gotten by the users of your application.

share|improve this answer
Are there any good tutorials that you would recommend to implement this on my site? I was hoping a plugin for joomla! existed, but it doesn't look like it does. – milan Jan 9 '11 at 16:35
@milan - I don't know joomla. I would look for an OpenId library for your platform - there should be at least an example included. – Oded Jan 9 '11 at 16:36
1  
Looking at this page openid.net/get-an-openid, it does not look like Facebook offers OpenID? – Alex Hope O'Connor May 27 '12 at 9:14
@AlexHopeO'Connor - They may have dropped it. – Oded May 27 '12 at 13:57

You can "just do it" using OpenId. That's what StackOverflow uses.

share|improve this answer

There are libraries available for Java Python, PHP, and others. Google authentication has been tested against the OpenID for Java library; see also libraries at OpenID Enabled. A comprehensive list of libraries is available on the OpenID site. For developers using OpenID for Java, this quick-start guide covers how to set up as an OpenID relying party. You may also use an implementation provided by a third-party such as JanRain

share|improve this answer

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.