Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been messing around with JSON for some time, just pushing it out as text and it hasn't hurt anybody (that 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 correct, 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.

share|improve this question

20 Answers

up vote 3451 down vote accepted

RFC 4627:

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

share|improve this answer
68  
Do we know how widely supported application/json is? – Anirvan Feb 5 '09 at 2:26
121  
“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
573  
Browsers do have a bit of a history of not correctly supporting things like "standards"... ;-) – Richard Ev May 20 '09 at 13:55
19  
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
18  
@Gumbo being tolerant with input is how we got IE 0.1 bug compatibility mode and "HTML" that may be harder to reliably parse than English. – BCS Feb 18 '11 at 5:42
show 13 more comments

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

share|improve this answer
28  
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

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 source 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);
    }
};
share|improve this answer
1  
server response must go as text/html. This is true for the ExtJS variant as well. – gbegley Oct 30 '12 at 21:10

For JSON:

Content-Type: application/json

For JSON-P:

Content-Type: application/javascript
share|improve this answer

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
share|improve this answer
21  
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
6  
Ubuntu 12.04 has this by default – Prizoff May 25 '12 at 17:52

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.

share|improve this answer
6  
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
3  
For odata services you can append a token with the MIME-type to specify verbose and lightweight versions . For version 1.0 and version 2.0 responses: application/json;odata=verbose. For version 3.0 responses: application/json;odata=light – vulcan raven Jul 9 '12 at 1:42

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 application/javascript. See http://en.wikipedia.org/wiki/JSONP

share|improve this answer

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'.
share|improve this answer

There 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 removed this newly added type and added

<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.

share|improve this answer

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/

share|improve this answer
14  
Tools that don't adhere to standards should be avoided whenever possible; use application/json per spec. – one.beat.consumer Feb 16 '12 at 2:05
8  
@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 '12 at 15:54
4  
+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 '12 at 8:30
2  
Surely it would be better to use text/plain so it doesn't apply any HTML semantics to non-HTML content? Or don't browsers let you extract a frame's content if it's got no DOM? – Synchro Aug 10 '12 at 12:34
1  
"... whenever possible". Those are the magic words that change everything! :) – brandizzi Mar 31 at 1:08

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.

share|improve this answer

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!

share|improve this answer

1) JSON :

Response is Dynamically generated data, according to the Query Parameters passed in the URL.

Eg : { "Name": "Foo", "Id": 1234, "Rank": 7 }

Answer : Content-Type: application/json

2) JSON-P :

JSON with Padding. Response is JSON data, with a function call wrapped around it.

Eg : functionCall({"Name": "Foo", "Id": 1234, "Rank": 7});

Answer : Content-Type: application/javascript

share|improve this answer
2  
I should actually downvote you. Posts at the top and bottom are often read, but not something that is somewhere in the middle... You are right though, you should have the +32000 rep, so I upvoted ;) – Luc May 27 at 12:42
1  
@Luc : I liked this line :you should have the +32000 rep verymuch. :D – Vin May 27 at 13:17
1  
How does this have less votes than the above answer, it's more complete and contains definitions.. – Daniel Waters Jun 12 at 11:02

Correct Answer:

content-Type:application/json
share|improve this answer

In JSP, you can use this in page directive:

<%@ page language="java" contentType="application/json; charset=UTF-8"
    pageEncoding="UTF-8"%>

The correct MIME media type for JSON is application/json. JSP will use it for sending a response to the client

share|improve this answer

“application/json” is the correct JSON content type.

def ajaxFindSystems = {
  def result = Systems.list()
  render(contentType:'application/json') {
    results {
      result.each{sys->
        system(id:sys.id, name:sys.name)
      }
    }
    resultset (rows:result.size())
  }
}
share|improve this answer

As many others have mentioned, application/json is the correct answer.

But what haven't been explained yet is what the other options you proposed mean.

  • application/x-javascript: Experimental MIME type for javascript before application/javascript was made standard.

  • text/javascript: Now obsolete. You should use application/javascript when using javascript.

  • text/x-javascript: Experimental MIME type for the above situation.

  • text/x-json: Experimental MIME type for json before application/json got officially registered.

All in all, whenever you have any doubts about content types, you should check this link

share|improve this answer
5  
When did text/javascript become obsolete? I'm still filling up HTML documents with <script type="text/javascript" ... tags. – Oli Apr 2 at 12:23
1  
It makes no difference for browsers, really. It's just obsolete for RFC standards: rfc-editor.org/rfc/rfc4329.txt – fcm Apr 2 at 12:34

I use the below

contentType: 'application/json',
data: JSON.stringify(SendData),
share|improve this answer

The right MIME type is application/json

BUT

I experienced many situations where the browser type or the framework user needed:

text/html

application/javascript

share|improve this answer

It is application/json however I have used the following as well:

"application/x-www-form-urlencoded; charset=UTF-8",

The above worked better for me.

share|improve this answer

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.