What's the proper error code to return when a POST request has an invalid parameter? Say: a form takes data for an event, but the date provided is in the past; or a form takes data for a user registration, but the name provided is a number or any invalid person name.
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 would personally opt for: 400 Bad Request the error should be in the 4xx range which represents client errors, because it is the responsibility of the client to transmit valid data. anyway, you can have a look at a list of standard HTTP response codes and chose one that seems to fit your need. |
|||||||||
|