If you’ve been trying to log in to the serverfault.com private beta and haven’t been able to, here’s probably why:

  1. You use Google’s (otherwise excellent) OpenID support on Stack Overflow.
  2. As we just discovered, Google’s OpenIDs are unique per-domain.
  3. Thus, the OpenID string key “fingerprint” that we use to identify you on Stack Overflow is not the same as the OpenID string key that Google returns for Server Fault.

Until we come up with a better workaround, what we recommend is adding an alternate Stack Overflow OpenID from myopenid or another service where the OpenID URL is stable. For example, one of my OpenID accounts is codinghorror.myopenid.com which works fine in both places.

It’s easy to add an alternate OpenID, just make sure you’re logged into your Stack Overflow account, first, then click the “New Login” link as described here.

(this strange behavior is documented by Google as well.)

« Server Fault Private Beta begins
Joel Talks About Stack Overflow at Google »

28 Responses

  1. David says:

    Just a quick note: this doesn’t seem to be an issue with using blogger as your OpenID provider.

  2. Brian Boatright says:

    I didn’t have any problems using it this morning to login, but it was a Blogger OpenID that requires me to login with my gmail account. I use the same one on both sites.

  3. Mike says:

    This is actually good to know. I consider this a feature. I thought when I logged into any OpenID-enabled site with my Google account, the URL could be matched up with any other site that used OpenID. Now that I know this is not the case, I’m a lot happier about the privacy aspect of Google’s OpenID service!

  4. Mark Biek says:

    Would using an OpenID delegate avoid this problem?

  5. Chris Jester-Young says:

    On a slightly different issue, I’ve noticed that if I try to add the “right” Google.com OpenID to my Server Fault account, I’m barred from doing so, because it’s not “on the Server Fault beta list”.

    Would it be sensible to relax that check for people who are adding a new OpenID to their existing Server Fault account?

  6. Nicholas Riley says:

    No, using a delegate does not help as it’s the resolved URL that gets matched, not the original one.

    My delegated URL is a Yahoo! one, and it also seems to be broken.

  7. Stephen Darlington says:

    I tried this previously with my Technorati account and it didn’t work. What I found is that the OpenID that you want to try can’t be your “Alt OpenID,” it has to be the main one.

    Not sure if that’s technically correct but it worked for me.

  8. Chas. Owens says:

    While I would like to participate in the beta, asking me to get a second OpenID when the whole point of OpenID is that I don’t have to manage multiple usernames/passwords seems a little silly.

  9. Jeff Atwood says:

    Chas — I can’t think of a workaround, since Google OpenIDs are effectively 100% unique strings per-site. There’s no way to “fingerprint” the account.

    I guess we could ask you for other unique information about your account on Stack Overflow, if you’ve filled it in..

  10. Steve Armstrong says:

    Jeff, if a delegate wouldn’t work, could you explain why? Don’t you guys link the account to the OpenID identifier, which is the delegate, and ignore authenticate against the Identity Provider, but forget about it thereafter?

    I use my own domain as my Identifier, which delegates to myopenid, and I don’t see myopenid anywhere in my profile. If I was delegating to Google, would I still have a problem? Or is the issue just with using Google for your Identifier, not your Identity Provider?

  11. Steve Armstrong says:

    Wow, my second sentence is gibberish. Should be:

    Don’t you guys link the SO / SF account to the OpenID Identifier? Then if it’s a delegate, resolve it, and use the result to authenticate against the Identity Provider, but forget the resolved address thereafter?

  12. Jeff Atwood says:

    I said nothing about delegates; you can view source on codinghorror.com and see how my delegation works. It shows up as the blog URL.

  13. Daniel L says:

    I guess an alternate (undoubtedly more difficult to implement) approach would have been to add something to the SO user profile page where qualifying users had one shot to submit an open id to be added to the serverfault beta list.

    If such a feature had existed, I could have added the SF version of my google open id to the beta list myself ;-]

  14. Dennis says:

    My SO login quit working and I’ve entered a ticket at uservoice and emailed the team, but I’ve received no response. I use a delegate and nothing has changed on my end that I know about. SO logs me in as “unknown (yahoo)” now instead of my correct user name.

    Needless to say, I’m also not able to log in to SF.

  15. Bill says:

    I agree w/ Mike. This is how I’d expect it to work & would definitely consider it a feature.

    Simply because one site knows of my identity, doesn’t mean I want another to allow a completely site the ability to connect my activities together.

    (In fact, I’d argue sites that _don’t_ do this should.)

  16. Jeff Atwood says:

    > Simply because one site knows of my identity, doesn’t mean I want another to allow a completely site the ability to connect my activities together.

    This claim is IMO rather silly because you’re initiating a LOGIN PROCEDURE on the target site. It’s not like Server Fault is sitting out there vacuuming up user credentials from the web.

    In other words, I’m guessing you use the same email address as a login credential on multiple sites, yes? Then claiming that one site can “know your identity” by entering the same email address in two places is a little bit crazy in my book.

    No offense intended, but I’m.. just.. sayin’..

  17. Pies says:

    Can’t you use e-mail to link the accounts together? You can request the e-mail address from Google on the first login and match it with the one in the StackOverflow database. Of course that would require some extra code, but hey, it’s a workaround.

    Another workaround would be a link from SO to SF with some kind of token and then use that token to link the two accounts together.

    The point of OpenID isn’t to allow different sites to identify you between themselves. It’s to allow you to log in without entering a login and a password.

  18. Richard says:

    A possible workaround:

    Create a blogspot blog from your Google account

    Use the blogspot URL instead of the Google URL – it runs under the same credentials.

  19. Enoc says:

    Alright, thanks. I signed up for a myOpenID account and that got me into serverfault.com. My wordpress openid wasn’t working for me either. That might have had something to do with the fact that I recently added some domains to the blog, whereas I created my SO account using the original WordPress blog URL? It’s moot now, myOpenID henceforth!

  20. Jess Sightler says:

    Thats a dandy solution, except that serverfault doesn’t allow you to change your openid providers even after being approved on an alt. And you can only have 2 providers. Thats really annoying in practice.

    To be fair, I do know that answer to all ails with OpenID is JQuery.

    Or was that myopenid that is the answer? :)

  21. Fowl says:

    Isn’t it possible to set up some nifty redirects between the sites a few times to link it all up?

  22. tinkertim says:

    That worked! Thanks :)

  23. Stefan says:

    I agree with Fowl. Login with unknown google openid could direct to other site with token. Then currently logged on user could get the new openid identifier from a shared token directory and then bounch back to the original site. A feature and requiring some work but very convenient.

  24. Kevin H says:

    One alternative is to use OAuth to bond them together. Have serverfault.com ask the user to log in to stackoverflow.com, and send back the unique cookie.

  25. Steve Schnepp says:

    @Pies: +1 for the token
    @Kevin H: the cookie is too cumbersome, the user could just copy/paste some information. SF & SO are for technical ppl anyway.

    A copy/paste SSO scheme would be enough :

    SF asks your SO user url, then presents a link to a special page in SO that generates a unique token only visible to your user. You just copy/paste it back in a SF page to link the 2. SF knows now the Google hash for your account.

  26. server says:

    Very nice job!

  27. Macha says:

    Has this been fixed since? Is there any sort of crossover between the SO/SF accounts now the beta is over?

  28. Kurt Miebach says:

    Why don’t you create a single sign-on system?

    You could have one site for login:

    https://login.stackoverflow.com

    which would be an OpenID RP, and to where you would redirect users from either stackvorflow.com, serverfault.com or superuser.com and
    propagate the authentication token to the requesting site.

    I think it is a good thing how google handles this. So a site where a user logins with open ID cannot neither learn about the user’s google account nor about his logins on other sites. It is an improvement of user’s privacy.

Leave a Reply