Supplying credentials safely to a RESTFUL API - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T02:13:13Zhttp://stackoverflow.com/feeds/question/944679http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/944679/supplying-credentials-safely-to-a-restful-api0Supplying credentials safely to a RESTFUL APImtc062009-06-03T13:15:57Z2009-06-05T03:41:14Z
<p>Hello,</p>
<p>I've created a RESTful server app that sits and services requests at useful URLs such as www.site.com/get/someinfo. It's built in Spring.</p>
<p>However, these accesses are password protected. I'm now building a client app that will connect to this RESTful app and request data via a URL. How can I pass the credentials across? Currently, it just pops up the user/password box to the user, but I want the user to be able to type the username and password into a box on the client app, and have the client app give the credentials to the RESTful app when it requests data. The client is built using Struts.</p>
<p>Cheers</p>
<p>EDIT - I don't think I made the question clear enough. I'm already forcing HTTPS, my question is more, in-code, when I'm requesting data from www.site.com/get/someinfo, how do I pass my credentials alongside making the request?</p>
http://stackoverflow.com/questions/944679/supplying-credentials-safely-to-a-restful-api/944701#9447011Answer by Tim Hoolihan for Supplying credentials safely to a RESTFUL APITim Hoolihan2009-06-03T13:20:05Z2009-06-03T13:20:05Z<p>Some relevant previous questions that might help you...</p>
<p><a href="http://stackoverflow.com/questions/458482/rest-and-authentication-variants">http://stackoverflow.com/questions/458482/rest-and-authentication-variants</a>
<a href="http://stackoverflow.com/questions/319530/restful-authentication">http://stackoverflow.com/questions/319530/restful-authentication</a></p>
http://stackoverflow.com/questions/944679/supplying-credentials-safely-to-a-restful-api/950594#9505940Answer by serialseb for Supplying credentials safely to a RESTFUL APIserialseb2009-06-04T13:28:47Z2009-06-04T13:28:47Z<p>Well, https has nothing to do with authentication, it's just transport-level encryption.</p>
<p>if you interact with an HTTP api, be it that it's https or not, and the dialog box pops up, it means its using HTTP authentication, either basic or digest. If your client instantiates an http client to read data from those "services", then you can pass those credentials when you instantiate the object.</p>
<p>If you use client-side script, XmlHttpRequest supports http authentication as well.</p>
<p>So in terms of code, how you pass the credentials to the RESTful services is dependent on the http client you're using (the object you instantiate to retrieve the data). You can simply collect such a username / password yourself from the client, and use it to call the other service.</p>
http://stackoverflow.com/questions/944679/supplying-credentials-safely-to-a-restful-api/954050#9540500Answer by rojoca for Supplying credentials safely to a RESTFUL APIrojoca2009-06-05T02:39:40Z2009-06-05T02:39:40Z<p>If you can add HTTP headers to your requests you can just add the <code>Authorization</code> header:</p>
<pre><code>Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
</code></pre>
<p>where you're using basic authentication and the <code>QWxhZGRpbjpvcGVuIHNlc2FtZQ==</code> bit is "<code>username:password</code>" base64 encoded (without the quotes). <a href="http://www.rfc-editor.org/rfc/rfc2617.txt" rel="nofollow">RFC 2617</a></p>
http://stackoverflow.com/questions/944679/supplying-credentials-safely-to-a-restful-api/954152#9541520Answer by Pat for Supplying credentials safely to a RESTFUL APIPat2009-06-05T03:30:03Z2009-06-05T03:30:03Z<p>look at existing solutions. In this case, <a href="http://oauth.net" rel="nofollow">oauth</a></p>
http://stackoverflow.com/questions/944679/supplying-credentials-safely-to-a-restful-api/954186#9541860Answer by Jason Watkins for Supplying credentials safely to a RESTFUL APIJason Watkins2009-06-05T03:41:14Z2009-06-05T03:41:14Z<p>You more or less have 3 choices:</p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/Basic%5Faccess%5Fauthentication" rel="nofollow">HTTP Auth</a></li>
<li>Roll your own protocol, ideally <a href="http://en.wikipedia.org/wiki/Hmac" rel="nofollow">HMAC</a> challenge/response based </li>
<li><a href="http://oauth.net/" rel="nofollow">OAuth</a></li>
</ol>
<p>OAuth is currently susceptible to a variation of a phishing attack, one that is largely undetectable to the target. As such I wouldn't recommend it until the protocol is modified.</p>
<p>OAuth should also be a lesson about how difficult it is to design secure protocols, and so I'm hesitant to reccomend the roll your own route.</p>
<p>That leaves HTTP auth, which is likely best if you can use it.</p>
<p>All that said, almost everything on the internet uses form based authentication, and many don't even bother with https for transport level security, so perhaps simply sending the password text in the clear is "good enough" for your purposes. Even still I'd encourage using https, as that at least reduces the dangers to a man in the middle attack.</p>