Hi stackworld,
Well heres my question.
In my project im using a rest service to authenticate clients. That part is ok as I have used a simple authentication by hashing a user id and a password together. After the authentication I want to open to the users few other rest services through the modular scheme in zend framework.
I am currently having the following directory structure,
Default/
IndexController
ErrorController
LoginController
Modules/
player/...
game/...
So the users will not be able to access player api if the initial login that they did is successful. Its almost as if I have to keep a session variable to check if the users have authenticated initially before using the other rest services. How can I go about doing this ?