I read these excellent answers of this post: If REST applications are supposed to be stateless, how do you manage sessions? and few similar posts but I still have a specific problem with RESTful apps and sessions:
In an app where a user needs to log in to perform a request only once per month: is this feasible with a RESTful app?
I ask this because saving the session state on the server is forbidden within REST technologies but where can I save the last date the client performed the request so that I serve his request positively after checking the condition above (once per month). Or is this not feasible at all with REST tech?
UPDATE:
I first accepted the answer below but I remember I read this:
each request from client to server must contain all of the information necessary to understand the request, and cannot take advantage of any stored context on the server.
Also from the first link, it is answered that:
The client's application state should never be stored on the server
So my question is still the same. Please help