vote up 1 vote down star
1

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/)

flag

68% accept rate
This must be a duplicate of one of these: stackoverflow.com/questions/tagged/… – John Saunders Jul 27 at 15:20

3 Answers

vote up 1 vote down

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|flag
+1. This sort of makes sense. Is there a good hashing/crypto JavaScript lib that you'd recommend? – B. Tyndall Jul 27 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 at 19:50
vote up 1 vote down

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|flag
Good point. +1. – B. Tyndall Jul 27 at 18:51
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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