Rails friendly url routing with open id - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:34:44Z http://stackoverflow.com/feeds/question/409782 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/409782/rails-friendly-url-routing-with-open-id 1 Rails friendly url routing with open id Jamal Hansen 2009-01-03T20:37:09Z 2009-01-03T21:08:32Z <p>I would like to use create a rails route for a user's open id. The url would look something like</p> <pre><code>http://mysite.com/identity/:html_encoded_openid or http://mysite.com/identity/:html_encoded_openid.xml </code></pre> <p>This would be so that the site could be queried for an open id and either view info for that identity or receive an xml document containing that information. Standard Rails stuff.</p> <p>I am looking for your expertise on a few things:</p> <ol> <li><p>Standard rails routes seem to choke the .s in an openid so that:</p> <p><a href="http://mysite.com/identity/openid" rel="nofollow">http://mysite.com/identity/openid</a></p> <p>would find a route but</p> <p><a href="http://mysite.com/identity/openid.myopenid.com" rel="nofollow">http://mysite.com/identity/openid.myopenid.com</a></p> <p>would not. </p></li> <li><p>What security issues would I need to look out for?</p></li> <li>Is there a better way to encode the query, perhaps with the querystring?</li> </ol> <p>And I'd rather not do the standard friendly url method of using:</p> <pre><code>my-friendly-openid-com or 23-my-friendly-openid-com </code></pre> <p>if possible.</p> http://stackoverflow.com/questions/409782/rails-friendly-url-routing-with-open-id/409841#409841 1 Answer by jdl for Rails friendly url routing with open id jdl 2009-01-03T21:08:32Z 2009-01-03T21:08:32Z <p>You could handle that second route with something like this (replace the action name with something real).</p> <pre><code>map.connect 'identity/:id', :controller =&gt; "identity", :action =&gt; "foo", :requirements =&gt; {:id =&gt; /(\w+\.?)+/} </code></pre>