Routing trouble for RESTful API - Rails

Posted by aressidi on Stack Overflow See other posts from Stack Overflow or by aressidi
Published on 2010-04-25T16:13:00Z Indexed on 2010/04/25 16:13 UTC
Read the original article Hit count: 301

Filed under:
|
|
|

I'm building out an API for web app that I've been working on for some time. I've started with the User model. The user portion of the API will allow remote clients to a) retrieve user data, b) update user information and c) create new users. I've gotten all of this to work, but it doesn't seem like its setup correctly. Here are my questions:

  1. Should the API endpoint be users or user? What's the best practice?
  2. I have to add the action to the end, which I would expect to be picked up instead by the request type so I don't have to specify it explicitly. How do I get my routes setup properly as not to have to include the method for protected actions?

Let me give some examples:

Get request for show - want it to work without the "show"

Put request for update - want it to work without the "update"

Create - works with or without 'create' which is what I want for all these actions

How do I structure routes to not require the action name? Isn't that the common way to to RESTful APIs?

Here is my route for the API now:

map.namespace :api do |route|
  route.resources :users
  route.resources :weight
end

I'm using restful authentication which is handling the http auth in curl. Any guidance on the routes issues and best practice on singular versus plural would be really helpful.

Thanks! -A

© Stack Overflow or respective owner

Related posts about rails

Related posts about routes