Hi All,
I am building an RESTful API for an application I am working on and client coders need to be able to submit data to the API on behalf of a user. All the popular API's I've used require me to send the generated session token (created when a user is logged in) for the user with a request to post information on the users behalf.
My question out of curiosity is why do these API's require a session key and not just allow me to send the username and password again with each request?
Thanks.