Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is using sessions in a RESTful API really violating RESTfulness? I have seen many opinions going either direction, but I'm not convinced that sessions are RESTless. From my point of view:

  • authentication is not prohibited for RESTfulness (otherwise there'd be little use in RESTful services)
  • authentication is done by sending an authentication token in the request, usually the header
  • this authentication token needs to be obtained somehow and may be revoked, in which case it needs to be renewed
  • the authentication token needs to be validated by the server (otherwise it wouldn't be authentication)

So how do sessions violate this?

  • client-side, sessions are realized using cookies
  • cookies are simply an extra HTTP header
  • a session cookie can be obtained and revoked at any time
  • session cookies can have an infinite life time if need be
  • the session id (authentication token) is validated server-side

As such, to the client, a session cookie is exactly the same as any other HTTP header based authentication mechanism, except that it uses the Cookie header instead of the Authorization or some other proprietary header. If there was no session attached to the cookie value server-side, why would that make a difference? The server side implementation does not need to concern the client as long as the server behaves RESTful. As such, cookies by themselves should not make an API RESTless, and sessions are simply cookies to the client.

Are my assumptions wrong? What makes session cookies RESTless?

share|improve this question
I've covered that exact issue here: stackoverflow.com/questions/1296421/rest-complex-applications/… – Will Hartung May 20 '11 at 6:50
To add to that, if you're only using the session for authentication, then why not use the provided headers? If not, and you're using the session for other state of the conversation, then that's violating the Stateless constraint of REST. – Will Hartung May 20 '11 at 6:53
@Will Thanks. It seems you're talking about sessions for temporarily storing user submitted data, while in my case I'm just talking about them as an implementation detail for authentication. Might this be where the disagreement comes from? – deceze May 20 '11 at 6:56
@Will Hartung: no significant difference from the protocol point of view. Filter should also be persisted on the server side and filter id should be always passed. 100% the same as with the sessions. – zerkms May 20 '11 at 6:57
@deceze My only point is that if you're going to use a header to represent an authentication token, HTTP provides one beyond a generic cookie. So, why not use that and keep the free semantics you get with it (anyone seeing the payload can see there's an authentication token assigned to it). – Will Hartung May 20 '11 at 7:00
show 6 more comments

3 Answers

up vote 61 down vote accepted

First of all, REST is not a religion and should not be approached as such. While there are advantages to RESTful services, you should only follow the tenets of REST as far as they make sense for your application.

That said, authentication and client side state do not violate REST principles. While REST requires that state transitions be stateless, this is referring to the server itself. At the heart, all of REST is about documents. The idea behind statelessness is that the SERVER is stateless, not the clients. Any client issuing an identical request (same headers, cookies, URI, etc) should be taken to the same place in the application. If the website stored the current location of the user and managed navigation by updating this server side navigation variable, then REST would be violated. Another client with identical request information would be taken to a different location depending on the server-side state.

Google's web services are a fantastic example of a RESTful system. They require an authentication header with the user's authentication key to be passed upon every request. This does violate REST principles slightly, because the server is tracking the state of the authentication key. The state of this key must be maintained and it has some sort of expiration date/time after which it no longer grants access. However, as I mentioned at the top of my post, sacrifices must be made to allow an application to actually work. That said, authentication tokens must be stored in a way that allows all possible clients to continue granting access during their valid times. If one server is managing the state of the authentication key to the point that another load balanced server cannot take over fulfilling requests based on that key, you have started to really violate the principles of REST. Google's services ensure that, at any time, you can take an authentication token you were using on your phone against load balance server A and hit load balance server B from your desktop and still have access to the system and be directed to the same resources if the requests were identical.

What it all boils down to is that you need to make sure your authentication tokens are validated against a backing store of some sort (database, cache, whatever) to ensure that you preserve as many of the REST properties as possible.

I hope all of that made sense. You should also check out the Constraints section of the wikipedia article on Representational State Transfer if you haven't already. It is particularly enlightening with regard to what the tenets of REST are actually arguing for and why.

share|improve this answer
+1 for a great well written response. – Mark Hosang May 20 '11 at 6:41
That's exactly how I see REST as well. As far as I'm aware it's virtually impossible to create an authentication mechanism that is not stateful to some degree, so if at all authentication in general is RESTless. – deceze May 20 '11 at 6:42
I would rephrase your initial statement. Only use REST if the constraints of REST make sense of your application. You are free to apply a subset of those constraints and you will get a subset of the benefits. However, at that point you have created your own architectural style. That's not a bad thing though, in fact that's what the first four chapters of Roy's dissertation are about, principled design. REST was just one example. – Darrel Miller May 20 '11 at 11:55
1  
@Darrel A fair enough point. I'm honestly not sure how Google does it, but the expiration time could be encoded into the authentication token. I believe my larger point still stands though. There are some types of state that simply must be maintained and as long as you understand why REST calls for statelessness, you can violate it in a way that makes sense with out many repercussions on the rest of the system and the advantages of a RESTful architecture. – Jared Harding May 21 '11 at 5:01
3  
Since no other arguments have been made so far, I'm accepting this well written response. I think the important part is that stateless server does not mean stateless server, something that I think is often misunderstood or misapplied. The server may (and usually must) have any state it wants, as long as it behaves idempotent. – deceze May 24 '11 at 3:27
show 2 more comments

Cookies are not for authentication. Why reinvent a wheel? HTTP has well-designed authentication mechanisms. If we use cookies, we fall into using HTTP as a transport protocol only, thus we need to create our own signaling system, for example, to tell users that they supplied wrong authentication (using HTTP 401 would be incorrect as we probably wouldn't supply Www-Authenticate to a client, as HTTP specs require :) ). It should also be noted that Set-Cookie is only a recommendation for client. Its contents may be or may not be saved (for example, if cookies are disabled), while Authorization header is sent automatically on every request.

Another point is that, to obtain an authorization cookie, you'll probably want to supply your credentials somewhere first? If so, then wouldn't it be RESTless? Simple example:

  • You try GET /a without cookie
  • You get an authorization request somehow
  • You go and authorize somehow like POST /auth
  • You get Set-Cookie
  • You try GET /a with cookie. But does GET /a behave idempotently in this case?

To sum this up, I believe that if we access some resource and we need to authenticate, then we must authenticate on that same resource, not anywhere else.

share|improve this answer
In the meantime I came around more to this point of view as well. I do think that technically it makes little difference, it's all just HTTP headers. It's true though that the authentication behavior itself is not RESTful, if login through a separate address is required. So cookies are only a symptom of a larger problem with the authentication system. – deceze Jan 24 at 10:44
  1. Sessions are not RESTless
  2. Do you mean that REST service for http-use only or I got smth wrong? Cookie-based session must be used only for own(!) http-based services! (It could be a problem to work with cookie, e.g. from Mobile/Console/Desktop/etc.)
  3. if you provide RESTful service for 3d party developers, never use cookie-based session, use tokens instead to avoid the problems with security.
share|improve this answer
2  
So, what's the difference between a token and a cookie? Why does it make a difference whether I'm using it for myself or others? If you can send and receive HTTP headers and store tokens, you can handle session cookies. – deceze May 20 '11 at 6:44
the cookie should not be used to store a session key for a session on the server which holds the authentication token. but if the cookie holds the authentication token itself it's a feasible solution. (of course the cookie should be httponly and secured) – roberkules Jan 25 '12 at 12:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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