What is the correct JSON content type?

Json

Json Problem Overview


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

Json Solutions


Solution 1 - Json

For JSON text:

application/json

> The MIME media type for JSON text is application/json. The default encoding is UTF-8. (Source: RFC 4627)

For JSONP (runnable JavaScript) with callback:

application/javascript

Here are some blog posts that were mentioned in the relevant comments:

Solution 2 - Json

IANA has registered the official MIME Type for JSON as application/json.

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

More resources:

Solution 3 - Json

For JSON:

Content-Type: application/json

For JSON-P:

Content-Type: application/javascript

Solution 4 - Json

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);
    }
};

Solution 5 - Json

JSON:

Response is dynamically generated data, according to the query parameters passed in the URL.

Example:

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

Content-Type: application/json


JSON-P:

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

Example:

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

Content-Type: application/javascript

Solution 6 - Json

If you are using Ubuntu 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 service apache2 restart

Solution 7 - Json

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.

Solution 8 - Json

The right content type for JSON is application/json UNLESS you're using JSONP, also known as JSON with Padding, which is actually JavaScript and so the right content type would be application/javascript.

Solution 9 - Json

There is no doubt that application/json is the best MIME type for a 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 the static and dynamic types sections. But this does not compress JSON responses at all.

After that I removed this newly added type and added

<add mimeType="application/x-javascript" enabled="true"/>

in both the static and dynamic types sections, 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 recommend to use

application/x-javascript

only if you want to compress your JSON responses on a shared hosting environment. Because in shared hosting, they do not allow you to change IIS configurations.

Solution 10 - Json

Only when using application/json as the MIME type I have the following (as of November 2011 with the most recent versions of Chrome, Firefox with 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. If the MIME type is different, it will just show up as 'Response content'.

Solution 11 - Json

Not everything works for content type application/json.

If you are using Ext JS 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 the Ext JS 3.4.0 API documentation.

Solution 12 - Json

JSON is a domain-specific language (DSL) and a data format independent of JavaScript, and as such has its own MIME type, 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. Would you transfer XML via text/plain?

But honestly, 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- it's as uninformative as making all 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 it 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!

Solution 13 - Json

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.

Solution 14 - Json

The correct answer is:

Content-Type: application/json

Solution 15 - Json

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

Solution 16 - Json

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.

Solution 17 - Json

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())
  }
}

Solution 18 - Json

The IANA registration for application/json says > Applications that use this media type: JSON has been used to exchange data between applications written in all of these programming languages: ActionScript, C, C#, Clojure, ColdFusion, Common Lisp, E, Erlang, Go, Java, JavaScript, Lua, Objective CAML, Perl, PHP, Python, Rebol, Ruby, Scala, and Scheme.

You'll notice that IANA.org doesn't list any of these other media types, in fact even application/javascript is now obsolete. So application/json is really the only possible correct answer.

Browser support is another thing.

The most widely supported non-standard media types are text/json or text/javascript. But some big names even use text/plain.

Even more strange is the Content-Type header sent by Flickr, who returns JSON as text/xml. Google uses text/javascript for some of it's ajax apis.

Examples:

curl -I "https://ajax.googleapis.com/ajax/services/search/video?v=1.0&q=jsonexample"

Output: Content-Type: text/javascript

curl -I "https://www.flickr.com/services/rest/?method=flickr.test.echo&format=json&api_key=f82254c1491d894f1204d8408f645a93"

Output: Content-Type: text/xml

Solution 19 - Json

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

Solution 20 - Json

I use the below

contentType: 'application/json',
data: JSON.stringify(SendData),

Solution 21 - Json

The Content-Type header should be set to 'application/json' when posting. Server listening for the request should include "Accept=application/json". In Spring MVC you can do it like this:

@RequestMapping(value="location", method = RequestMethod.POST, headers = "Accept=application/json")
    

Add headers to the response:

HttpHeaders headers = new HttpHeaders();
headers.add("Content-Type", "application/json");

Solution 22 - Json

> The application/json works great in PHP to store an array or object > data.

I use this code to put data in JSON on Google Cloud Storage (GCS) which is set publically viewable:

$context = stream_context_create([
	'gs' => [
		'acl'=>'public-read', 
		'Content-Type' => 'application/json',
	]
]);
	
file_put_contents(
	"gs://BUCKETNAME/FILENAME.json", 
	json_encode((object) $array), 
	false, 
	$context
);

To get back the data is straight forward:

$data = json_decode(file_get_contents("gs://BUCKETNAME/FILENAME.json"));

Solution 23 - Json

In Spring you have a defined type: MediaType.APPLICATION_JSON_VALUE which is equivalent to application/json.

Solution 24 - Json

  • Content-Type: application/json - JSON
  • Content-Type: application/javascript - JSON-P
  • Content-Type: application/x-javascript - JavaScript
  • Content-Type: text/javascript - JavaScript but obsolete. Older Internet Explorer versions used to use it for HTML attributes.
  • Content-Type: text/x-javascript - JavaScript Media Types, but obsolete
  • Content-Type: text/x-json - JSON before application/json got officially registered.

Solution 25 - Json

For JSON, I am using:

Content-Type: application/json

This is described in the IETF's JSON Data Interchange Format 7158 proposal, Section 1.2: Specifications of JSON.

Solution 26 - Json

If the JSON is with padding then it will be application/jsonp. If the JSON is without padding then it will be application/json.

To deal with both, it is a good practice to use: 'application/javascript' without bothering whether it is with padding or without padding.

Solution 27 - Json

Extending the accepted responses, when you are using JSON in a REST context...

There is a strong argument about using application/x-resource+json and application/x-collection+json when you are representing REST resources and collections.

And if you decide to follow the jsonapi specification, you should use of application/vnd.api+json, as it is documented.

Altough there is not an universal standard, it is clear that the added semantic to the resources being transfered justify a more explicit Content-Type than just application/json.

Following this reasoning, other contexts could justify a more specific Content-Type.

Solution 28 - Json

If you get data from REST API in JSON, you have to use Content-Type:

  • For JSON data: Content-Type:application/json
  • For HTML data: Content-Type:text/html,
  • For XHTML data: Content-Type:application/xhtml+xml,
  • For XML data: Content-Type:text/xml, application/xml

Solution 29 - Json

PHP developers use this:

<?php
    header("Content-type: application/json");

    // Do something here...
?>

Solution 30 - Json

JSON (JavaScript Object Notation) and JSONP ("JSON with padding") formats seems to be very similar and therefore it might be very confusing which MIME type they should be using. Even though the formats are similar, there are some subtle differences between them.

So whenever in any doubts, I have a very simple approach (which works perfectly fine in most cases), namely, go and check corresponding RFC document.

JSON RFC 4627 (The application/json Media Type for JavaScript Object Notation (JSON)) is a specifications of JSON format. It says in section 6, that the MIME media type for JSON text is

application/json.

JSONP JSONP ("JSON with padding") is handled different way than JSON, in a browser. JSONP is treated as a regular JavaScript script and therefore it should use application/javascript, the current official MIME type for JavaScript. In many cases, however, text/javascript MIME type will work fine too.

Note that text/javascript has been marked as obsolete by RFC 4329 (Scripting Media Types) document and it is recommended to use application/javascript type instead. However, due to legacy reasons, text/javascript is still widely used and it has cross-browser support (which is not always a case with application/javascript MIME type, especially with older browsers).

Solution 31 - Json

The proper current standard is application/json. While the default encoding is UTF-8, it is worth mentioning that it could also be UTF-16 or UTF-32. When JSON is written in UTF-16 or UTF-32, binary content-transfer-encoding must be used.

There is more information about JSON in RFC 4627: The application/json Media Type for JavaScript Object Notation (JSON)

More information on binary transfer encoding is on 5. The Content-Transfer-Encoding Header Field (RFC 1341).

Solution 32 - Json

To complement the previous the answers, the MIME type for JSON linked data (JSON-LD) according to W3C is:

> application/ld+json > > Type name: application > > Subtype name: ld+json

Additionally, from the same source:

> File extension(s): > > .jsonld

Solution 33 - Json

As you may have to use these more frequently, always try to remember these three content types even though there are many content types:

  • Content-Type: application/json
  • Content-Type: application/xml
  • Content-Type: text/html

Solution 34 - Json

For specifying the interesting JSON result, you add "application/json" in your request header like below:

"Accept:application/json" is a desired response format.

"Content-Type:application/json" specifies the content format of your request, but sometimes you specify both application/json and application/xml, but the quality of these might be different. Which server will send back the different response formats, look at the example:

Accept:application/json;q=0.4,application/xml;q=8

This will return XML, because XML has higher quality.

Solution 35 - Json

As some research,

The most common MIME type is

application/json

Let's see a example to differentiate with JSON and JavaScript.

  • application/json

It is used when it is not known how this data will be used. When the information is to be just extracted from the server in JSON format, it may be through a link or from any file, in that case, it is used.

For example-

<?php

    header('Content-type:application/json');

    $directory = [
            ['Id' => 1, 'Name' => 'this'],
            ['Id' => 2, 'Name' => 'is'],
            ['Id' => 3, 'Name' => 'Stack Overflow'],
        ];

    // Showing the JSON data

    echo json_encode($directory);
?>

The output is,

[{"Id":1, "Name":"this"}, {"Id":2, "Name":"is"}, {"Id":3, "Name":"Stack Overflow"}]

  • application/javascript

It is used when the use of the data is predefined. It is used by applications in which there are calls by the client-side Ajax applications. It is used when the data is of type JSON-P or JSONP.

For example

<?php

    header('Content-type:application/javascript');

    $dir = [
            ['Id' => 1, 'Name' => 'this' ],
            ['Id' => 2, 'Name' => 'is'],
            ['Id' => 3, 'Name' => 'Stack Overflow'],
    ];

    echo "Function_call(" . json_encode($dir) . ");";
?>

The output is,

Function_call([{"Id":1, "Name":"this"}, {"Id":2, "Name":"is"}, {"Id":3, "Name":"Stack Overflow"}])

And for other MIME types, see the full detail in MIME types (IANA media types).

Solution 36 - Json

A part of your question is relevant to me as I just came across it.

A third-party provider is providing a REST service that is used by multiple clients. It's a straight-forward REST called with query parameters that returns a well-formed JSON. I have tested it with PHP and Java where it worked as expected.

My client uses Oracle Service Bus as a gateway between his application server and the Internet. When I made the OSB service, it crashed with an Invalid message format error. Turned out that the content-type being returned was text/html. OSB treats responses as per this header; converting between text, XML and JSON. In this case, the response was JSON but the header didn't say so. Contacting the provider, I got the reply: "We're not going to change it as it doesn't effect anyone else".

The Content-Type header specifies what the content should be, not what it actually is. That is to say, in your consuming program, it's up to you to check or ignore it and process the content in any manner. Another example, you can return GIF data but specify the content type as JSON, then go ahead and ignore the header and read the image data. This won't hurt your program, but may hurt others.

Moral of the story: Play nice.

Solution 37 - Json

It depends on the point of view.

If you are the client sending a request, then application/json is the right choice.

But if you are the server receiving a request, you have to be prepared, that the client may also send the encoding. So application/json and application/json; charset=utf-8 are valid.

The media type is the same in both cases. But the content type differs.

Solution 38 - Json

The right content type for JSON is application/json UNLESS you're using JSONP, also known as JSON with Padding, which is actually JavaSc ript and so the right content type would be application/javascript . There is no doubt that application/json is the best MIME type for a JSON response.


Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionOliView Question on Stackoverflow
Solution 1 - JsonGumboView Answer on Stackoverflow
Solution 2 - JsongnrfanView Answer on Stackoverflow
Solution 3 - JsonAlix AxelView Answer on Stackoverflow
Solution 4 - JsonMikhail.MamaevView Answer on Stackoverflow
Solution 5 - JsonBhavinView Answer on Stackoverflow
Solution 6 - JsonGourneauView Answer on Stackoverflow
Solution 7 - JsonMark ClancyView Answer on Stackoverflow
Solution 8 - JsonResist DesignView Answer on Stackoverflow
Solution 9 - JsonshashwatView Answer on Stackoverflow
Solution 10 - JsonIvo LimmenView Answer on Stackoverflow
Solution 11 - JsonConanView Answer on Stackoverflow
Solution 12 - JsonVLostBoyView Answer on Stackoverflow
Solution 13 - JsonyodabarView Answer on Stackoverflow
Solution 14 - JsonIrfan DANISHView Answer on Stackoverflow
Solution 15 - JsonfcmView Answer on Stackoverflow
Solution 16 - JsonrajaView Answer on Stackoverflow
Solution 17 - JsonSukaneView Answer on Stackoverflow
Solution 18 - Jsonuser1596138View Answer on Stackoverflow
Solution 19 - JsonLombaXView Answer on Stackoverflow
Solution 20 - JsonAndroView Answer on Stackoverflow
Solution 21 - JsonAlexander BurakevychView Answer on Stackoverflow
Solution 22 - JsoneQ19View Answer on Stackoverflow
Solution 23 - JsonChand PriyankaraView Answer on Stackoverflow
Solution 24 - JsonKashif SolangiView Answer on Stackoverflow
Solution 25 - JsonMehmet_View Answer on Stackoverflow
Solution 26 - JsonAnkit ZalaniView Answer on Stackoverflow
Solution 27 - Jsonjgomo3View Answer on Stackoverflow
Solution 28 - JsonKrishnaView Answer on Stackoverflow
Solution 29 - Jsonuser3087089View Answer on Stackoverflow
Solution 30 - JsonIresha RubasingheView Answer on Stackoverflow
Solution 31 - Jsonsammyb123View Answer on Stackoverflow
Solution 32 - JsonalejnavabView Answer on Stackoverflow
Solution 33 - JsoncherankrishView Answer on Stackoverflow
Solution 34 - Jsonbehzad babaeiView Answer on Stackoverflow
Solution 35 - Jsonshirsh shuklaView Answer on Stackoverflow
Solution 36 - JsonHussain AkbarView Answer on Stackoverflow
Solution 37 - JsoncevingView Answer on Stackoverflow
Solution 38 - Jsonuser2452263View Answer on Stackoverflow