I need to maintain session information between REST calls to an Apache server. Not having ever developed on the Apache platform I hope to find a package / module that can help facilitate session information and application security. Please target you answers for a newbie.
I need to maintain session information between REST calls to an Apache server. Not
Share
With our restful web services calls we simply include the credentials in every call, using simple auth. When you think about it, this is actually pretty nice. It makes for an easy to understand api, and doesn’t involve any gymnastics for authenticating, expiring a token, etc.
I’d also recommend you do all of this over https, since the password will be in clear text.