Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails 3 RESTful web services with json

I am looking for any basic Ruby on rails tutorial that uses RESTful web services with json, If somebody can throw a very basic app that implement those technologies i would appreciate, I have tried to google but i couldn't find anything.Also if you could give me a real world scenario where we would actually use that ,would be even more helpful.Thank you very much

like image 228
katie Avatar asked May 20 '12 02:05

katie


2 Answers

For those coming to this question from google like myself, take a look at some of the tutorials here, they were a great help for me.

like image 156
Deekor Avatar answered Nov 19 '22 01:11

Deekor


ActiveResource is the simple way to implement restful web service's in rails

http://www.ibm.com/developerworks/library/wa-railsactive/

http://api.rubyonrails.org/v3.2.13/classes/ActiveResource/Base.html

like image 45
Shiva Avatar answered Nov 19 '22 02:11

Shiva