up vote 1 down vote favorite
share [g+] share [fb]

if I do this:

curl -X POST -H 'Content-type: application/xml' -d '<person>...</person>' 'http://0.0.0.0:3000/people/12?_method=PUT'

I get "Only get, put, and delete requests are allowed." Why? Rails 2.3.2

link|improve this question

52% accept rate
feedback

3 Answers

luca is correct, you need to send the X-Http-Method-Override header with your request. Putting _method=put in the JSON body did not work for me. Your curl command line will look like this:

 curl
  -H "X-Http-Method-Override: put"
  -H "Content-Type: application/json"
  -d "{\"user\":{\"email\":\"blah@example.com\"}}"
  www.site.com/users/username.json
link|improve this answer
feedback
up vote 1 down vote accepted

This is actually a malfunctioning in rails recent versions. The solution is to pass the HTTP method override header with put. Important:the full name of the header is http-x-http-method-override but rails adds the http prefix so you should trim that part.

link|improve this answer
feedback

There's a couple of things that could be going wrong.

First off, you're sending a POST with curl, but you've got the "magic" _method parameter on your URL, and it's set to PUT. Based on the error, it sounds like Rails is taking POST as the authoritative request type. Try it without that and see what happens.

On a more pedestrian error, the routing (in config/routes.rb could be configured to not allow POST requests for for the action you are attempting to use.

If you're using a standard RESTful controller, that makes good sense, because you're accessing a member (/people/12) which by default only allows GET, PUT, and DELETE.

I would try using curl -X PUT and dropping the ?_method=PUT from your request.

link|improve this answer
you're right.. what I didn't mention is that while curl is capable of sending PUT requests, most browsers aren't and I'm writing in flex, which is not capable of it. Therefore I have to choose between GET and POST and try to make it understand it's a PUT... – luca Aug 9 '09 at 9:31
Makes sense. Did you try lower case 'put' as your _method parameter? I looked at a form generated by Rails (update forms use PUT) and it used this code: <input name="_method" type="hidden" value="put" />. – Luke Francl Aug 9 '09 at 20:27
What does /people/12 have to do with REST? – aehlke Aug 18 '09 at 14:47
Wahnfrieden, that's a standard format for Rails' RESTful routing. See guides.rubyonrails.org/routing.html – Eric Nguyen May 31 '10 at 19:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.