I have a REST Jersey web service.
My question is about the answer of this question, please check;
token based authentication in php
In that answer its mentioned that;
"It then sends a hash of this token and certain characteristics of the request to authenticate the request, e.g. sha1(Token + Timestamp + Request URL + Request Body). Your server can validate this without the client having to send the token in plain text on each request."
Can anyone explain how can the server validate "without the client having to send the token in plain text on each request" ? Client should to send token each time to server?
Another question is, once the server receives a hash of this token(which includes timestamp and userid..etc) How will server identify the user from this token without having a look table or DB where tokens are stored?