How to extend a Zend Framework application to allow RESTful authentication?

red_kid

New Member
I have a Zend Framework application that I am trying to tweak so I can use with an iPhone application. Everything in my ZF application requires that you are logged in first. In the browser you go to \[code\]myapp.com/auth/login\[/code\] and get a login form. When you successfully authenticate, a cookie is set in order to remember that you are logged in (I think that's how it works). It also redirects you to the home page and displays HTML.Ideally, my iPhone app will authenticate (somehow) against my ZF app and get a JSON response. Then it can make future requests as being authenticated. So far, my iPhone application sets the login credentials as the POST data and submits to the login page, and the ZF app returns the HTML of the home page (or the validation failed page).I'm looking for some "best practices" answers to this. Maybe I'm asking the wrong question. Maybe I don't need to be thinking about "RESTful authentication". What is the best way to approach tweaking my Zend Framework application to allow my iPhone app to authenticate and make requests?
 
Back
Top