I\'m following this excellent article to setup the authentification part of my rails (3.2) API:
http://blog.joshsoftware.com/2011/12/23/designing-rails-api-using-rabl-and-de
Regarding Luc's question, that's my understanding as well.
For example, using default non-API login, SessionsController.create handles the login. How do I retrieve the authentication_token and reuse it as part of the API calls later?
Also, how do I override the SessionsController.create to call resource.reset_authentication_token! ?