ruby on rails - Devise authentication via REST -


i'm using devise in rails 3 app authentication.

i have app updates records in table via rest interface. currently, can't have before_filter :authenticate_user! in table's controller.

is there way supply username, password via rest interface? or other method rest input authenticated?

you can use token authentication send params rest api securely using either https://github.com/gonzalo-bulnes/simple_token_authentication or https://github.com/lynndylanhurley/devise_token_auth


Comments