Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to allow users to log in into my website with OpenID. So far I have integrated Google and Yahoo.

What other popular services are offering OpenID login endpoints? I'm particulary interested in Windows Live (but from what I've seen they recently closed the endpoint, and I couldn't find any information about new one). What about social websites, like Facebook or Twitter?

I have seen the OpenID Directory but I didn't find any useful information.

share|improve this question
I found a good list of providers and endpoints: en.wikipedia.org/wiki/OpenID#OpenID_Providers I could google a minute more before asking the question. :) Thanks for answers. – Adam Jun 28 '10 at 12:00
1  
Facebook doesn't currently support OpenID, as far as I know. They use OAuth 2.0 instead. I believe Twitter has switched to OAuth as well. – ʇsәɹoɈ Jul 2 '10 at 23:16

4 Answers

up vote 3 down vote accepted

take a look what stackoverflow is offering.

http://stackoverflow.com/users/login

sadly no idea what urls you have to use, but a little choice what is popular so far.

regards

share|improve this answer

Here are some OpenId endpoints :

These following services are not OpenId providers and have their own authentication flow :

share|improve this answer

Well if you allow the user to input their own openID url then they can use ANY endpoint. That's the whole point of openID: if you support one endpoint, you support them all. Like StackOverflow, it is best to cover a number of the most popular endpoints so that inputting the openID url is easier (for example, most people don't know the Google OpenID url even if they have an account). You should definitely cover Yahoo, WordPress, Blogger, AOL and MyOpenId like this. But if people like me, who have their own personalised openID url come to your site, they should have the option to use that one.

The OpenID specification actually requires that you provide the URL input box. The input element should also have the OpenID logo as the background image.

share|improve this answer

Actually, it shouldn't matter since the user will supply you with the URL to ask. All OpenID providers work the same way, so the URL should be all you need (see http://openid.net/)

share|improve this answer
Or, if you want to make things easier for your users, implement the identifier select feature so they don't have to remember a cryptic URL. – ʇsәɹoɈ Jul 2 '10 at 23:12

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.