up vote 1 down vote favorite
1
share [g+] share [fb]

Duplicate: this must be a duplicate of one of the questions that come up in the following search: http://stackoverflow.com/questions/tagged/rest+authentication. Please close it as a duplicate if you agree, and add any answers to one of the other questions.


What is the most RESTful form of authentication? What websites use it? (so I can go look at the documentation).

Looking at some APIs that claim to be REST are really POX
(ex. Remember the Milk - http://www.rememberthemilk.com/services/api/methods/)

link|improve this question

71% accept rate
This must be a duplicate of one of these: stackoverflow.com/questions/tagged/rest+authentication – John Saunders Jul 27 '09 at 15:20
feedback

3 Answers

I don't know if this is the 'most RESTful' form, but Amazon's S3 uses an authentication method which is documented here. Each request is signed, so there is no session to track on the backend, but you can still securely verify what user issued the request.

link|improve this answer
+1. This sort of makes sense. Is there a good hashing/crypto JavaScript lib that you'd recommend? – brun Jul 27 '09 at 19:04
Not that I've used in production. I tried to go with this method for a project at work, but we ended up using Flex/amfphp instead. Sorry! – ryanday Jul 27 '09 at 19:50
feedback

The most RESTful authentication method is probably HTTP Basic. Because it has some significant weaknesses (replay attacks), most APIs tend to shy away from it.

link|improve this answer
Good point. +1. – brun Jul 27 '09 at 18:51
feedback

Open Sourcery has a well-thought-out article on RESTful authentication. Sounds like there are no awesome solutions right now beyond simple user/pass auth over SSL and then keeping auth info in subsequent request headers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.