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.

My REST API returns JSON.

I'm currently returning text/plain as the MIME type, but it feels funny. Should I be returning application/x-javascript or some other type?

The second question is with regard to the HTTP status code for error conditions. If my REST API is returning an error state, I am returning as JSON

{ result: "fail", errorcode: 1024, errormesg: "That sucked. Try again!" }

Should the HTTP status code remain at 200 OK?

share|improve this question

5 Answers

up vote 41 down vote accepted

The JSON spec suggests application/json, and that seems to be supported by the IANA registry.

On the second question, I think if the message handling fails in some way you should return a structured and standard error response as a JSON message; only if there is a failure to deliver the message to the backend handler for some reason should you consider an HTTP error code.

share|improve this answer
Thanks for the link to the JSON spec. I found another stackoverflow question that points to another MIME type "text/x-json". Not sure what's the difference. stackoverflow.com/questions/95554/… – ashitaka Jan 1 '09 at 3:38
6  
For practical reasons (say for example you've got Flex's horrific HTTP client in the mix), sometimes you have to use 200 for everything. However, under normal circumstances, you want to use the most appropriate HTTP status code for the situation. – Bob Aman Oct 31 '09 at 5:08
1  
@ashitaka: That other question specifically asks how to set JSON to text/x-json. It makes no claim as to that being the correct media-type for JSON. – Software Monkey May 25 '11 at 18:50

The MIME type of JSON is

application/json

http://www.ietf.org/rfc/rfc4627.txt

http://www.iana.org/assignments/media-types/application/

More specifically here:

http://www.ietf.org/rfc/rfc4627.txt

share|improve this answer

I prefer to reply with both an HTTP error status and application specific payload.

share|improve this answer

No, you shouldn't return 200 in an error condition.

It's ok to repeat the status code, or to include a more detailed error code in the response payload.

share|improve this answer

The proper Content-type to return is application/json, according to RFC 4627, which also registers the MIME type IANA (and indeed, it shows up on IANA's page). Of course, if you were to write a client, you would want to be more liberal in what you accept, and also accept others such as text/json and text/x-json.

Now, if there is an error you should not return HTTP 200, that's fundamentally non-RESTful. I know that sometimes there's not an exact match for your error, but choose the closest 4XX (client's fault) or 5XX (server's fault) errors in RFC 2616 Sections 10.4-10.5, and be more precise in the JSON.

share|improve this answer

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.