How is an OpenID Client supposed look up the OpenID delegate? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T22:24:20Zhttp://stackoverflow.com/feeds/question/674704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate3How is an OpenID Client supposed look up the OpenID delegate?Armin Ronacher2009-03-23T18:42:54Z2009-03-24T06:25:37Z
<p>Hello everybody. I just noticed that stackoverflow had problems with my OpenID delegate and I noticed that this was caused by my website not using a <code><html></code> and <code><head></code> section.</p>
<p>Now even though this is valid HTML the question is if it's valid for OpenID delegate lookups. The official stuff I was able to find on the website just talks about “the head section” of the HTML document, which however by HTML4/5 standards is implicit.</p>
<p>I'm now interested if the bug is in the way I declared the delegate or the stackoverflow OpenID implementation.</p>
<p>The not working version:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<title>Index &raquo; Armin Ronacher</title>
<link rel="openid.server" href="http://www.myopenid.com/server">
<link rel="openid.delegate" href="http://mitsuhiko.myopenid.com/">
<meta content="Zine" name="generator">
<!-- more link/meta stuff here -->
<!-- page contents here -->
<div class="header">
</code></pre>
<p>The working version:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Index &raquo; Armin Ronacher</title>
<link rel="openid.server" href="http://www.myopenid.com/server">
<link rel="openid.delegate" href="http://mitsuhiko.myopenid.com/">
<meta content="Zine" name="generator">
<!-- more link/meta stuff here -->
</head>
<!-- page contents here -->
<div class="header">
<!-- at the very end of the page -->
</html>
</code></pre>
http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/674967#6749670Answer by MarkusQ for How is an OpenID Client supposed look up the OpenID delegate?MarkusQ2009-03-23T19:46:21Z2009-03-23T19:46:21Z<blockquote>
<p>I was able to find on the website just talks about “the head section” of the HTML document, which however by HTML4/5 standards is implicit.</p>
</blockquote>
<p>Where did you find this? I searched through the standards and didn't find any mention of the "head section" (it talks about the "head element"); the closest I came on a broader search was that most implementations are lax in requiring an explicit <code><html></code> and <code><head></code>, but this was presented more as a case of magnanimously accepting non-compliant documents than as a part of the standard.</p>
http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/675657#6756571Answer by Greg for How is an OpenID Client supposed look up the OpenID delegate?Greg2009-03-23T23:46:30Z2009-03-23T23:46:30Z<p>I think it is assumed that an HTML page should have a HEAD tag. Most do, even if it's not strictly required by some standards.</p>
<p>However, the OpenID standard seems to <a href="http://openid.net/specs/openid-authentication-1%5F1.html#anchor4" rel="nofollow">require</a> its tags to be placed in the HEAD tag. Do other sites detect your OpenID when it's not in HEAD?</p>
http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/676263#6762631Answer by Andrew Arnott for How is an OpenID Client supposed look up the OpenID delegate?Andrew Arnott2009-03-24T05:46:36Z2009-03-24T05:46:36Z<p>The bug is in your HTML page that declares the delegate. The HTML and HEAD tags are required to be around the delegate tag for a very good security reason. If this were not required, then many web pages like wiki's and blog pages could be hijacked for their identity merely by leaving a comment that included a specially crafted tag. </p>
<p>The "head section" referred to by OpenID is indeed the HEAD tag in an HTML page. Although I haven't read the entire beefy thing, I'd be drop-dead surprised if the HTML spec itself didn't mandate a surrounding HTML tag, and that all META tags must be within a HEAD tag. In my opinion, the OpenID spec doesn't go into detail about all the HTML requirements because it's a spec about OpenID and not HTML, but "head section" is a reference to the HTML spec, just as it references many other specs.</p>
<p>In conclusion, I believe StackOverflow.com is doing the right thing. </p>
http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/676317#6763170Answer by Irina C for How is an OpenID Client supposed look up the OpenID delegate?Irina C2009-03-24T06:19:20Z2009-03-24T06:25:37Z<p>I found this solution on getopenid.com :</p>
<p>"If you have a blog or homepage you'd like to use as your OpenID, you don't have to set up a server! Just copy the following into the head part of your HTML or XHTML, and use that URL.</p>
<p>link rel="openid.server" href="http://getopenid.com/action/authenticate/"<br />
link rel="openid.delegate" href="http://getopenid.com/YOURIDENTITY/"</p>
<p>Note that you cannot use secure signons with this URL unless you have your own SSL server. Sites will also see you as a different person than when you directly use your identity from GetOpenID.com."</p>
<p>I think you have to replace getopenid.com with your OpenID provider and YOURIDENTITY with
your OpenID identity.</p>