Right I've been messing around with JSON for some time, just pushing it out as text and it hasn't hurt anybody (I know of), but I'd like to start doing things properly.

I have seen so many purported "standards" for the JSON content type:

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

But which is right? Or best? I gather that there are security and browser support issues varying between them...

(I know there's a similar question, What MIME type if JSON is being returned by a REST API?, but I'd like a slightly more targeted answer.)

link|improve this question

70% accept rate
6  
1000th up vote, yay. – AHungerArtist Apr 10 at 12:54
feedback

11 Answers

up vote 1448 down vote accepted

RFC 4627:

The MIME media type for JSON text is application/json.

link|improve this answer
27  
Do we know how widely supported application/json is? – Anirvan Feb 5 '09 at 2:26
48  
“application/json” is the only correct media type. What exactly do you want to know about it’s support? – Gumbo Feb 5 '09 at 11:12
282  
Browsers do have a bit of a history of not correctly supporting things like "standards"... ;-) – Richard Ev May 20 '09 at 13:55
8  
To add, a little article explaining why not to use something like text/html: jibbering.com/blog/?p=514 - it's older, but still interesting. Not sure if the same caveats apply to text/plain etc. – Michael Stum Feb 2 '10 at 21:44
124  
@Richard Ev: The recommended behavior with internet messages of any kind is: “Be strict when sending and tolerant when receiving. Implementations must follow specifications precisely when sending to the network, and tolerate faulty input from the network. When in doubt, discard faulty input silently, without returning an error message unless this is required by the specification.” So you should send your JSON data only with application/json but allow other types when receiving data that is expected to be JSON data. – Gumbo Jul 8 '10 at 13:08
show 14 more comments
feedback

IANA has registered the official mimetype for JSON as "application/json".

See here:

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

More specifically here:

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

Douglas Crockford pointed to this document here:

http://tech.groups.yahoo.com/group/json/message/337

When asked about why not "text/json", Crockford seems to have said JSON is not really javascript nor text and also IANA was more likely to hand out application/* than text/*

See: http://bluesmoon.livejournal.com/227190.html

link|improve this answer
4  
A lot of stuff got put into the text/* section in the early days that would probably be put into the application/* section these days. – TRiG Jul 5 '11 at 20:47
thanks for the links – Etienne Dupuis Mar 27 at 20:33
feedback

Of course, the correct MIME media type for JSON is application/json, but it's necessary to realize what type of data is expected in your application.

For example, I use Ext GWT and the server response must go as text/html but contains JSON data.

Client side, Ext GWT form listener

uploadForm.getForm().addListener(new FormListenerAdapter(){
    @Override
    public void onActionFailed(Form form, int httpStatus,
                               String responseText) {
        MessageBox.alert("Error");
    }

    @Override
    public void onActionComplete(Form form, int httpStatus,
                                 String responseText) {
        MessageBox.alert("Success");
    }
});

In case of using application/json response type, the browser suggests me to save the file.

Server side sourse code snippet using Spring MVC

return new AbstractUrlBasedView() {
    @SuppressWarnings("unchecked")
    @Override
    protected void renderMergedOutputModel(Map model, HttpServletRequest request,
                                           HttpServletResponse response) throws Exception {
        response.setContentType("text/html");
        response.getWriter().write(json);
    }
};
link|improve this answer
feedback

If you're calling ASP.NET Web Services from the client-side you have to use 'application/json' for it to work. I believe this is the same for the jQuery and Ext frameworks.

link|improve this answer
1  
jQuery seems to work with at least 'application/json' and 'text/plain'... I haven't tried all the others though. – Nathan Mar 18 '10 at 19:30
feedback

If you are using Ubuntu 10.04 or Debian and you serve .json files through Apache, you might want to serve the files with the correct content type. I am doing this primarily because I want to use the Firefox extension JSONView

The Apache module mod_mime will help to do this easily. However, with Ubuntu you need to edit the file /etc/mime.types and add the line

application/json json

Then restart Apache:

sudo /etc/init.d/apache2 restart
link|improve this answer
5  
usually a reload is enough (faster than restart). Also, note that you can now do "sudo service apache2 reload". – noamtm Jan 19 '11 at 17:37
Ubuntu 12.04 has this by default – Prizoff yesterday
feedback

Only when using application/json as mime type I have the following (as of november 2011 with the most recent versions of Chrome, Firefox w/ Firebug):

  • No more warnings from Chrome when the json is loaded from the server.
  • Firebug will add a tab to the response showing you the JSON data formatted, it the mime type is different it will just show up as 'Response content'.
link|improve this answer
feedback

Not everything works for content type application/json.

If you are using ExtJs form submit to upload file, be aware that the server response is parsed by the browser to create the document for the IFRAME.

If the server is using JSON to send the return object, then the Content-Type header must be set to text/html in order to tell the browser to insert the text unchanged into the document body.

see here:
http://dev.sencha.com/deploy/ext-3.4.0/docs/

link|improve this answer
2  
Tools that don't adhere to standards should be avoided whenever possible; use application/json per spec. – one.beat.consumer Feb 16 at 2:05
1  
@one.beat.consumer while that is true, it's not specific to ExtJs per se. It's a browser limitation (or rather, perhaps, a "security measure"). – Hendy Irawan Feb 24 at 15:54
+1 for @one.beat.consumer and HendyIrawan. you're both true. for this situation it's can't be avoided (browser limitation). – Conan Feb 25 at 8:30
feedback

The right content type for JSON is application/json UNLESS you're using JSONP, also know as JSON with Padding, which is actually JavaScript and so the right content type would be text/javascript. See http://en.wikipedia.org/wiki/JSONP

link|improve this answer
feedback

These is no doubt that application/json is the best mime type for json response.

But I had some experience where I had to use `application/x-javascript' because of some compression issues. My hosting environment is shared hosting with GoDaddy. They do not allow me to change server configurations. I had added the following code to my web.config file for compressing responses.

    <httpCompression>
      <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll"/>
      <dynamicTypes>
        <add mimeType="text/*" enabled="true"/>
        <add mimeType="message/*" enabled="true"/>
        <add mimeType="application/javascript" enabled="true"/>
        <add mimeType="*/*" enabled="false"/>
      </dynamicTypes>
      <staticTypes>
        <add mimeType="text/*" enabled="true"/>
        <add mimeType="message/*" enabled="true"/>
        <add mimeType="application/javascript" enabled="true"/>
        <add mimeType="*/*" enabled="false"/>
      </staticTypes>
    </httpCompression>
    <urlCompression doStaticCompression="true" doDynamicCompression="true"/>

By using this, the .aspx pages was compressed with g-zip but json responses were not. I added <add mimeType="application/json" enabled="true"/> in static and dynamic types section. But this does not compressed json responses at all. After that I remove this newly added type type and add <add mimeType="application/x-javascript" enabled="true"/> in both static and dynamic types section, and changed the response type in .ashx (asynchronous handler) to application/x-javascript. And now I found that my json responses were compressed with g-zip. So I personally recommending to use application/x-javascript only if you want to compress your json responses on a shared hosting environment. Because in share hosting they do not allow you to change IIS configurations.

link|improve this answer
feedback

If you're in a client-side environment, investigating about the cross-browser support is mandatory for a well supported web application. The right HTTP Content-Type would be application/json, as others already highlighted too, but some clients do not handle it very well, that's why jQuery recommends the default text/html.

link|improve this answer
feedback

JSON is a DSL and a data format independent of JavaScript, and as such has its own mimetype "application/json". Respect for mime types is of course client driven, so "text/plain" may do for transfer of bytes, but then you would be pushing up interpretation to the vendor application domain unnecessarily- application/json goddamnit!would you transfer XML via "text/plain" ya big troll ya?!

But honestly, assuming its an honest question, your choice of mime type is advice to the client as to how to interpret the data- text/plain or text/HTML (when it's not HTML) is like type erasure- its as uninformative as making sll your objects of type Object in a typed language. No browser runtime I know of will take a JSON document and automatically make it available to the runtime as a JavaScript accessible object without intervention, but if you are working with a crippled client, that's an entirely different matter. But that's not the whole story- RESTful JSON services often don't have JavaScript runtimes, but doesn't stop them using JSON as a viable data interchange format. If clients are that crippled.... then I would consider perhaps HTML injection via an AJAX templating service instead.

Application/JSON!

link|improve this answer
feedback

protected by Michael Myers Mar 8 '11 at 17:46

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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