Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Restful API in rails 3

How should I go about creating a restful API in rails 3 app? Also I would like to know if there is a good way to implement restful authentication

like image 962
ed1t Avatar asked Dec 22 '22 16:12

ed1t


1 Answers

Restful API in rails 3? Rails is restful.. just use routes [guide]

As for authentication, i strongly recommend devise. It's also the only one I have managed to get working on rails 3.

like image 169
alexcepoi Avatar answered Dec 31 '22 13:12

alexcepoi