What online authentication services are available.

I know about

  • Live ID
  • OpenID

Are there any other major players.

I am particularity interested in authentication federation so that we can log in once and use on multiple sites (if this is even possible).

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

There is also Facebook Connect, to add to your list.

However, you are conflating two concepts: single sign-on (SSO) and single password. OpenID provides a distributed single-password system, where users log in to their ID provider once for each consumer site they visit. Windows Live ID provides a centralized single-password system, where users log in to Microsoft once for each consumer site.

On the other hand, you say "we can log in once and use on multiple sites". That is SSO. An SSO system like Kerberos has the user log in once, and then use the credentials they obtained across multiple authentication realms. Using federated-trust systems like Cosign or Shibboleth, it's possible to trust credentials from other institutions.

If you clarify exactly what you're trying to do, you will probably get a better answer. But there's more to it than you seem to have gotten a handle on.

link|improve this answer
Facebook Connect, R.I.P :) developers.facebook.com/docs/authentication – Claudio Redi Aug 30 '10 at 23:27
1  
Slight correction - while Live ID does support SSO, it does not force it, and sites using it for user authentication can maintain separate signin state. An example of this is CodePlex.com where the user has to explicitly sign in, even if she's already signed in to any Live.com site. – Franci Penov Aug 30 '10 at 23:32
Thanks, this is exactly the kind of info I need. I am still slightly confused about difference between LiveID and OpenID in your description any chance on expanding it or if you have a good link. – Loki Astari Aug 31 '10 at 7:49
@Martin York: Anyone can run their own OpenID server - it's an open standard. Google provides an OpenID when you sign in to your account with them. So does Yahoo, and StartSSL, and a dozen other companies. I can even run my own and have example.com/myid be my OpenID URL. Thus, decentralized. With Windows Live ID, you must use Microsoft's site. If they're down, no login for you. Thus, centralized. As Franci Penov points out, Live ID can also be used for kind-of SSO - but I'm pretty sure it involves an extra round-trip to MS for each site, an can't federate, so it's only sort-of SSO. – Borealid Aug 31 '10 at 15:26
@Borealid: Thanks. Though I doubt MS has a single point of failure. I would assume (please correct me if I am wrong) that LiveID has a single URL (though in real life this may map to different sites for different people and automatically roll (I am using roll because I am not sure what they can do to update DNS dynamically but there must be a technique to fail-over to a secondary site) on failure) – Loki Astari Aug 31 '10 at 16:51
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.