How is an OpenID Client supposed look up the OpenID delegate? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:24:20Z http://stackoverflow.com/feeds/question/674704 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate 3 How is an OpenID Client supposed look up the OpenID delegate? Armin Ronacher 2009-03-23T18:42:54Z 2009-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>&lt;html&gt;</code> and <code>&lt;head&gt;</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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"&gt; &lt;title&gt;Index &amp;raquo; Armin Ronacher&lt;/title&gt; &lt;link rel="openid.server" href="http://www.myopenid.com/server"&gt; &lt;link rel="openid.delegate" href="http://mitsuhiko.myopenid.com/"&gt; &lt;meta content="Zine" name="generator"&gt; &lt;!-- more link/meta stuff here --&gt; &lt;!-- page contents here --&gt; &lt;div class="header"&gt; </code></pre> <p>The working version:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Index &amp;raquo; Armin Ronacher&lt;/title&gt; &lt;link rel="openid.server" href="http://www.myopenid.com/server"&gt; &lt;link rel="openid.delegate" href="http://mitsuhiko.myopenid.com/"&gt; &lt;meta content="Zine" name="generator"&gt; &lt;!-- more link/meta stuff here --&gt; &lt;/head&gt; &lt;!-- page contents here --&gt; &lt;div class="header"&gt; &lt;!-- at the very end of the page --&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/674967#674967 0 Answer by MarkusQ for How is an OpenID Client supposed look up the OpenID delegate? MarkusQ 2009-03-23T19:46:21Z 2009-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>&lt;html&gt;</code> and <code>&lt;head&gt;</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#675657 1 Answer by Greg for How is an OpenID Client supposed look up the OpenID delegate? Greg 2009-03-23T23:46:30Z 2009-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#676263 1 Answer by Andrew Arnott for How is an OpenID Client supposed look up the OpenID delegate? Andrew Arnott 2009-03-24T05:46:36Z 2009-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#676317 0 Answer by Irina C for How is an OpenID Client supposed look up the OpenID delegate? Irina C 2009-03-24T06:19:20Z 2009-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>