Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I noticed that the Mozilla HTTP response codes documentation states that

The methods PUT, DELETE, and OPTIONS can never result in a 200 OK response.

However it doesn't make clear what response should actually be used. My best guess would be 204:

204 : No Content

There is no content to send for this request, but the headers may be useful. The user-agent may update its cached headers for this resource with the new ones.

Can anyone comment as to whether or not this is the correct code to be using to response to an OPTIONS request?

Thanks

share|improve this question
   
Interestingly, Alan Dean’s HTTP headers status flow chart suggests 200. – Gumbo Feb 3 at 18:21

1 Answer

up vote 1 down vote accepted

Well, in that case the Mozilla documentation is plainly wrong.

share|improve this answer
1  
this agrees with you. DELETE can be 200 OK – Hiroto Feb 3 at 20:44
Hiroto: I really don't care whether some other sources say the same. What's relevant is the specification. – Julian Reschke Feb 5 at 9:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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