One of the cooler features of OpenID is delegation. This means, instead of having your OpenID identifier be

yourname.myopenid.com

it can be

yourdomain.com

Much easier to remember, right? And it’s really easy to do, too! Here’s how I did it.

First, sign up for an OpenID with the provider of your choice (note that Google, Yahoo, and Microsoft are all OpenID providers now, so you may already have one). I like myopenid.com, so I originally signed up there. My OpenID identifier is codinghorror.myopenid.com.

To enable my domain to act as a delegate to the OpenID provider, I added these two HTML header tags to the homepage of codinghorror.com.

<html>
<head>
<title>Coding Horror</title>
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="openid.server" href="http://www.myopenid.com/server">
<link rel="openid.delegate" href="http://codinghorror.myopenid.com/">
</head>

Then I used our new multiple OpenID feature to tell Stack Overflow about my new OpenID. Here on my user page, I can see that I already have two OpenIDs attached to my account.

openid-alternate-new-loginopenid-alternate-new-login

In case you’re wondering, the OpenID fields here are only visible because I’m logged in as myself. The OpenID identifiers aren’t normally visible to anyone else.

I want to attach a new OpenID to my account, so I click New Login. Note that I must be logged in first to change my OpenIDs, so I need to be sure I click New Login!

openid-alternate-login-entry

I enter codinghorror.com as my OpenID identifier, then click the Login button (or just press Enter).

When I’m returned to the page, I had a brand new OpenID identifier in my primary slot!

openid-alternate-overwrite-primary

Now I can log in to any OpenID enabled website using codinghorror.com!

One minor technical note: when logging in via the “New Login” link, your alternate OpenID will be filled first, and all subsequent new logins will overwrite your primary OpenID. Use the new “Swap” link to switch them around, so you can overwrite whichever one you want (thanks Stewart Johnson for that suggestion).

« We Now Support Multiple OpenIDs
The Best Time to Ask a Stack Overflow Question? »

38 Responses

  1. nobody says:

    If you own your own domain (and have PHP hosting), you can also use phpMyID and become your own OpenID provider. If you’re tired of messing around with multiple providers (and getting frustrated at those that don’t work well) check it out:

    http://siege.org/projects/phpMyID/

  2. Jeff Atwood says:

    phpMyID does work, but in the longer term, I’d suggest people use a well-known provider with delegation (and proper https:// support for secure logins)

    Sort of the same reason it’s just not worth hosting your own POP3/SMTP mail server any more, when GMail hosted email does it so well and with less hassle!

  3. Pelle says:

    An advantage of having an openid on your own domain is that it’s exchangeable as well – if a openid provider goes out of business you can just delegate to a new one and have a fallback even on sites that doesn’t allow multiple openid:s.

    Although – that would be the drawback as well – if your site got hacked and the front page replaced then the hacker can also hijack your openid – so you need to be sure to have a secure website :)

  4. Jeff Atwood says:

    > if your site got hacked and the front page replaced then the hacker can also hijack your openid

    Oh yes, excellent point — that is a downside of delegation, versus using yourname.myopenid.com (or yahoo.com, etc) every time.

  5. Cd-MaN says:

    Because it is so simple, you do it even with sites where you have relatively little control over (for example a hosted blog). See a similar (short) post about how to do it with Blogger: http://hype-free.blogspot.com/2007/02/grokking-openid-and-blogger.html

    Also, you can specify multiple OpenID providers to “load-balance” between them (of course this won’t help you if your site goes down :-)).

  6. Lim Chee Aun says:

    Weird, in my case, my (previous) OpenID identifiers are gone (MyOpenID and Yahoo). The ‘Interesting Tags’ that I’ve set are gone too.

  7. Jeff Atwood says:

    > Weird, in my case, my (previous) OpenID identifiers are gone (MyOpenID and Yahoo). The ‘Interesting Tags’ that I’ve set are gone too.

    Sounds like you created a new account. This will happen if you click “login” (means you are not logged in) versus “new login” (means you are already logged in). You can email us to fix, essentially I just delete the new account so it doesn’t squat on the OpenID you want to add.

  8. Stewart Johnson says:

    Thanks for implementing my suggestion so quickly!

    However, I just tried the “swap” link, and it doesn’t work. It gives me a js popup asking if I want to do the swap, I click OK and then nothing happens.

    PS: Isn’t it a little ironic that you’re talking about how cool openid is, but you’re not using it for people to login to submit comments on this blog? :-)

  9. Jeff Atwood says:

    LOL, works on my machine bug. the xsrf JS key was only present for moderators. Fixed in next push.

  10. Stewart Johnson says:

    Works now, thanks!

  11. Bloop says:

    Could you add a ‘delete’ link alongside the alternate OpenID?

    I think it’s quite common that someone might go on to close an OpenID that was created when they were new to the concept, or simply not want to be associated with a given provider any more.

  12. kip says:

    Has anyone successfully delegated to their Yahoo OpenID? I couldn’t get it to work when I first signed up with SO, so I just went with openid.com (for whom delegation worked no problem).

  13. Jeff Martin says:

    Unfortunately from what I can tell, neither yahoo nor google support delegation. I’d love to be proved wrong on this one.

  14. Lawrence Dol says:

    Did this and it worked… but it forced my entire URL to lowercase, which happens to be fine on my website (hosted on a case-insensitive FS), but would have broken on a *nix system.

  15. Cd-MaN says:

    @Jeff: as far as I understand the idea is to delegate to google/yahoo, not from (ie. you have your homepage – like a blog – but want to do the authentication using the OpenID provided by google/yahoo while still using the URL of your blog as your OpenID).

  16. Jeff Martin says:

    @Cd-Man – the problem is that neither Yahoo nor Google provide a value for the openid.server link.

  17. andrew says:

    thanks for the post — updated my site accordingly!

  18. Chris Lieb says:

    Who do I email to get my accounts merged? I can’t find information anywhere and all of my attempts so far have resulted in delivery failure.

  19. Markus says:

    What is required for Yahoo to work? I tried openid.server pointing to http://www.yahoo.com/ and even http://openid.yahoo.com/ but it doesn’t work.

  20. DigDug says:

    So if someone gets access to my OpenID, then they have access to my whole life, all my information on every website?

    That’s … retarded.

  21. Mike says:

    Why use the name of the document (index.html) in the openid?

  22. Anirvan says:

    @Markus, I believe Yahoo’s current OpenID server is https://open.login.yahooapis.com/openid/op/1.1/auth — just look at lines 5-6 of the HTML in your me.yahoo.com page.

  23. Paul says:

    @Anirvan – this works, but gets you to a weird page saying that Yahoo only supports Open ID 2. Even though Yahoo themselves uses the 1.1 link in their own pages?

  24. Davur says:

    Does anyone know the server uri to use for Google OpenID?

  25. hm2k says:

    If you use wordpress you’ll probably want to check this out:

    http://www.hm2k.com/posts/using-your-own-url-as-your-openid-with-wordpress

    Hope this helps! :)

  26. Dennis says:

    Yahoo only supports OpenID 2.0 – Delegation is via:

    Unfortunately, it’s made of fail, since they return the local_id instead of your URL, thus bypassing the portability you were trying to achieve by delegating.

  27. Dennis says:

    Yahoo only supports OpenID 2.0 – Delegation is via:

    link rel=”openid2.provider” href=”https://open.login.yahooapis.com/openid/op/auth”

    link rel=”openid2.local_id” href=”https://me.yahoo.com/a/LzGkBUoL3Y2vzrzJkeMDsaoekh3yQBjHyw–”

    Unfortunately, it’s made of fail, since they return the local_id instead of your URL, thus bypassing the portability you were trying to achieve by delegating.

  28. Davide says:

    It worked in the past, but now it seems to be broken. See also:

    http://stackoverflow.com/questions/826014/how-does-openid-delegation-work-on-the-relying-party-have-the-specs-changed-rece

  29. Syed Tayyab Ali says:

    Is it possible that I can delete one open id from my account.

  30. Jigar Shah says:

    I am trying to use blogger. But it gives me error,
    “The requested URL /accounts/TokenAuth… is too large to process. ”

    Something wrong with blogger ? Blogger is OpenId 1.1. Whats our version support here ?

  31. what up? says:

    THis is just a test.. please ignore…

  32. Skaperen says:

    How do I get a preferred nickname to work via OpenID? I’ve read about OpenID before, but it just left questions like this unanswered. I don’t like the idea of typing in long ID strings from URLs to login, either.

  33. Rosani Santamarina says:

    So,

    are there any privacy concerns of OpenID that one should care about.

    Rosani Santamarina
    http://santamarina.info

  34. salle55 says:

    Isn’t it a security problem if you can associate a new OpenID without be forced to login with the main account first? It’s like changing the password without the need to type the old password first.

  35. samjetski says:

    @salle55 – no, the whole idea is that you _do_ have to log into your main account. You log into your main account, then you bring up your profile, then click on “new login” on your profile, then log in with another openid, then it’s added.
    But the “new login” link (or I think it may be “add openid”) will not show on your profile unless you’re already logged in.

  36. Aneesh says:

    Hi,
    Nice post on how to add openID support to your site !
    A basic tutorial of what is openID and why is it useful could be found here :
    http://itsaneesh.wordpress.com/2009/11/09/one-ring-to-rule-them-all-openid/
    OR
    http://itsaneesh.blogspot.com/2009/11/one-ring-to-rule-them-all-openid.html

  37. salle55 says:

    @samjetski – Yes I understand that you have to be logged in with the main account first, but my point is that if I’m logged in and then leave my computer anyone can go to my profile and add their own OpenID to my account without knowing my password or anything. Sure, you have to have access to the physical computer but I still think you should be forced to log in (a second time) before associating a new OpenID-account.

  38. samjetski says:

    @salle55 – ah, ok fair enough. That’s a good thought…
    I wonder how the OpenID equivalent of “Reenter your password” would work, since authentication occurs through a remote server…

Leave a Reply