I found out GetOpenID.com (not to be confused with MyOpenID.com) will shut down at the end of the month (details at their home page).

To not get stranded, here is a guide to switching OpenIDs across all sites (thanks to this feature):

  • Make sure you have a reliable OpenID at another provider

  • Go to any profile (that has been associated with your other profiles)

  • Add an alternative OpenID if you don't have one, swap OpenIDs to make the new one primary, and delete the obsolete one. If you already have an alternative OpenID, make the obsolete OpenID your primary, then "edit" to replace it with the new one.

  • Go to the accounts tab, there are a few buttons tucked at the bottom

  • Click the Copy {site} login credentials to all Stack Exchange accounts button at the bottom

Return to FAQ index

share|improve this question

3 Answers

My solution for this. If you have your own domain name, then you can use the delegate feature to set up yourself as your OpenID provider. This way if the OpenID provider you are using decides to shut down, or they have some big security breach, you can very easily switch providers without switching your on all sites that use OpenID. All you have to do is set up a page, like http://www.example.com/myopenid.html and use that. Personally, I've set up a subdomain, and just set up an index.html file to do the delegation, so my OpenID looks more like http://openid.example.com. The code for doing the delegate (MyOpenID in this case) is below.

<html>
    <head>
        <link rel="openid.server" href="http://www.myopenid.com/server">
        <link rel="openid.delegate" href="http://#USERNAME#.myopenid.com">
        <meta http-equiv="X-XRDS-Location" content="http://www.myopenid.com/xrds?username=#USERNAME#.myopenid.com">
    </head>
    <body>
    </body>
<html>

Just swap out #USERNAME# with your own username for MyOpenID, or choose another OpenID provider and fill it in accordingly.

share|improve this answer
+1, I do this too. – The Unhandled Exception Oct 24 '11 at 20:02

Additional to @Kibbee: If you really have your own domain name, it's easy to be your own OpenID provider. You'll get the warm feeling that the internet stays a decentralized network and are immune to shutdowns of other services.

There are plenty of applications out there which do that. I personally use SimpleID and am satisfied with it (not even a database needed, and has support for multiple IDs).

share|improve this answer
Thanks for the info on this. When SO originally started I looked for a way to be my own OpenID provider, but couldn't find any scripts that just worked. I'll check this out. – Kibbee Jun 15 '11 at 14:11

Don't forget that Stack Exchange is now an Open ID provider themselves.

If your only use of Open ID happens to be for Stack Exchange, then it's probably worth registering and switching over to the "local" provider.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged