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.

Possible Duplicate:
The *right* JSON content type?

I am using java for the server side programming and I want to return json data from the server side. Now my question is I have come across the several return format of JSON as below

application/json
text/javascript
text/x-json
application/x-javascript
text/x-javascript

Out of which according to the standard what should be used as the currect format of MIME type ?

share|improve this question

marked as duplicate by Bergi, Charles, BalusC, jmort253, assylias Dec 17 '12 at 11:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 5 down vote accepted

Here, RFC 4627, which is the industry standard for the MIME types of JSON, says that the currect format of the JSON response MIME type should be application/json.

share|improve this answer
2  
+1 for the RFC citation. – Brian Dec 12 '12 at 2:09
1  
@Brian Thanks bro – NullPointerException Dec 12 '12 at 2:10
1  
Thanks bro for the quick response, excellent answer BTW – NullPointerException Dec 13 '12 at 4:42

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