10720

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.

Alec
  • 6,521
  • 7
  • 23
  • 48
Oli
  • 215,718
  • 61
  • 207
  • 286

36 Answers36

10780

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:

Roshana Pitigala
  • 7,058
  • 8
  • 38
  • 66
Gumbo
  • 594,236
  • 102
  • 740
  • 814
  • 66
    [Complete list of MIME types](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types) – Eugen Mihailescu Apr 04 '17 at 05:08
  • does it really matter what mime type it has? it's text that gets parsed into an object. wouldn't it be more natural to pass it as text/plain if you want it to be openable in browser without force download, and application/octet-stream if you want it to be automatically downloaded(useful if you're generating it on a webpage intended to be saved locally). Is there really that many people that will need to know the mime type so the downloader can view it with a special json viewer? What am I missing that warrants it a special mime type? – Dmitry Aug 23 '17 at 12:00
  • Using "text/plain" is a bad practice in general. There are, for instance, attacks in the web platform that would allow cross-origin data theft if you fail to send an appropriate MIME type value. – EricLaw Nov 21 '17 at 21:27
  • 7
    Internet Explorer sometimes has issues with application/json - blog is offline – kudlatiger Jun 04 '18 at 03:59
  • 6
    Imagine I have a document written by somebody which contains plain text. Now that plain text just happens to be valid JSON as well. Would I then be wrong to use text/plain as its mime-type? JSON is a SUB-TYPE of text. So I think both should be allowed. The question is which works better in practice. According to comment by codetoshare IE has problems with application/json. But no browser should have problems with text/plain. If text/plain is unsafe then how can I serve text-files from my web-site? – Panu Logic Sep 01 '18 at 16:08
  • 8
    @EugenMihailescu The title of that page is "Incomplete list of MIME types" – Omegastick Aug 30 '19 at 06:30
  • Note that [RFC4627](https://tools.ietf.org/html/rfc4627) was obsoleted by [RFC7159](https://tools.ietf.org/html/rfc7159), itself replaced by [RFC8259](https://tools.ietf.org/html/rfc8259). The information provided here still holds. – Oliver Sieweke Nov 09 '20 at 19:43
  • @Omegastick True, however that page *does* have a link to the IANA list of "all" types linked in the answer. – mbomb007 Nov 20 '20 at 15:55
  • Which are now called [Media Types](https://www.iana.org/assignments/media-types/media-types.xhtml) by the IANA. – Ludovic Kuty Mar 19 '21 at 12:28
1677

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:

Gowtham Subramaniam
  • 2,858
  • 2
  • 15
  • 28
gnrfan
  • 17,783
  • 1
  • 19
  • 12
  • 178
    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 05 '11 at 20:47
  • 36
    @Rohmer - You "can" open anything in a text editor, but a binary format like JPEG or a Windows .exe or a .zip will contain non-printable characters which can actually break many text editors or cause undesired behavior. Try running `cat file.jpg` for example. Whereas any xml or json file is 100% printable. So I think Stijn de Witt's point is a valid one, despite the fact that yes, it's too late to change now. – XP84 Jan 16 '18 at 20:59
  • 6
    @XP84 You can open any binary with a text editor in HEX form. And all the different characters (the 16 of them) are 100% printable. So, by that logic... *are all binaries text?* **Json is not text.** Json is *(warning: informal loose definition ahead)* a text representation of an object (or array of objects) – xDaizu Apr 05 '18 at 11:55
  • 9
    There is no meaning to the phrase "a text editor in HEX form". A Hex editor shows each byte as its hexadecimal value, for example, the byte 1111000 as "78". While there may be some text editors which also happen to have a hex editing mode, this is neither common nor useful for anything but the most technical users doing the most technical tasks. Text, by comparison, means ASCII or Unicode, and in text, the byte 1111000 means lower-case `x` character. Not 78. JSON is text in exactly the same way as HTML (text/html). It contains only readable text characters, with structured meaning in them. – XP84 May 21 '18 at 21:53
  • 16
    I tend to agree with Stijn de Witt. JSON is meant to be viewed and edited with a text-editor. – Panu Logic Sep 01 '18 at 15:59
939

For JSON:

Content-Type: application/json

For JSON-P:

Content-Type: application/javascript
Amal Murali
  • 70,371
  • 17
  • 120
  • 139
Alix Axel
  • 141,486
  • 84
  • 375
  • 483
651

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);
    }
};
John Odom
  • 1,100
  • 2
  • 19
  • 35
Mikhail.Mamaev
  • 7,469
  • 5
  • 22
  • 28
476

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

User 1531343
  • 8,084
  • 12
  • 86
  • 158
Bhavin
  • 26,755
  • 11
  • 52
  • 91
  • 48
    The definition of JSON is wrong. It does not need to be dynamically generated or respect query parameters. You can serve a static JSON file. Also, the most upvoted answer has a link to the RFC. – styfle Jan 29 '14 at 01:37
  • 10
    Also JSONP can be json data assigned to a var. – Jimmy Kane Jan 30 '14 at 13:16
412

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
Umpa
  • 329
  • 10
  • 15
Gourneau
  • 11,760
  • 8
  • 41
  • 41
395

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.

Amal Murali
  • 70,371
  • 17
  • 120
  • 139
Mark Clancy
  • 7,403
  • 8
  • 41
  • 47
  • 20
    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
  • jQuery is capable of working with `content-Type: text/plain`, `content-Type: application/json`, `content-Type: application/json; charset=UTF-8`, `contentType: "application/x-www-form-urlencoded; charset=UTF-8"` – Ashraf.Shk786 Jul 27 '17 at 11:13
313

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.

Amal Murali
  • 70,371
  • 17
  • 120
  • 139
Resist Design
  • 4,133
  • 2
  • 18
  • 34
302

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.

A J A Y
  • 498
  • 1
  • 5
  • 19
shashwat
  • 7,036
  • 7
  • 53
  • 86
  • 12
    "So I personally recommending to use application/x-javascript" is where this answer becomes misleading. GoDaddy *does* allow compression of `application/json`, I leverage it on my shared hosting and I wouldn't suggest using a different content type to enable compression anyway, it's simply wrong. It can be done, but it will still be wrong. Using different content types for *browser support* is one thing, using different content types for server-side compression is another. –  Dec 11 '14 at 16:20
271

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'.
Michael Berkowski
  • 253,311
  • 39
  • 421
  • 371
Ivo Limmen
  • 2,965
  • 1
  • 23
  • 18
247

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.

Holger Just
  • 45,586
  • 14
  • 98
  • 114
Conan
  • 2,874
  • 1
  • 19
  • 23
  • 42
    Tools that don't adhere to standards should be avoided whenever possible; use `application/json` per spec. – one.beat.consumer Feb 16 '12 at 02:05
  • 16
    @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
  • 8
    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
  • 6
    To add further confusion: I'm just debugging a similar case on Samsung Galaxy Beam (Android 2.3) with default browser, and the `iframe` seems to fire `load` event for `application/javascript`, `application/x-javascript`, `text/javascript`, `text/plain`, but **NOT** firing it for `application/json` nor `text/html`. As of today, Android <=2.3 is About 50% of the Android market share. – jakub.g Jul 05 '13 at 12:41
230

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!

djv
  • 11,577
  • 7
  • 43
  • 62
VLostBoy
  • 3,704
  • 2
  • 21
  • 30
212

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.

yodabar
  • 4,262
  • 1
  • 28
  • 36
174

The correct answer is:

Content-Type: application/json
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Irfan DANISH
  • 7,467
  • 10
  • 35
  • 63
169

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

fcm
  • 5,618
  • 5
  • 22
  • 36
  • 16
    When did `text/javascript` become obsolete? I'm still filling up HTML documents with ` – Oli Apr 02 '13 at 12:23
  • 8
    It makes no difference for browsers, really. It's just obsolete for RFC standards: http://www.rfc-editor.org/rfc/rfc4329.txt – fcm Apr 02 '13 at 12:34
  • 17
    @Oli you can safely drop `type="text/javascript"` and just do `` at least according to HTML5. – TCB13 Jun 27 '13 at 21:41
152

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.

raja
  • 2,233
  • 2
  • 20
  • 25
118

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())
  }
}
George Stocker
  • 55,025
  • 29
  • 167
  • 231
Sukane
  • 2,432
  • 3
  • 15
  • 19
116

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

93

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
George Stocker
  • 55,025
  • 29
  • 167
  • 231
LombaX
  • 16,951
  • 5
  • 49
  • 72
78

I use the below

contentType: 'application/json',
data: JSON.stringify(SendData),
DD_
  • 6,881
  • 11
  • 36
  • 60
Andro
  • 875
  • 6
  • 14
69

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");
Alexander Burakevych
  • 2,218
  • 1
  • 20
  • 24
61

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"));
Nubok
  • 3,113
  • 6
  • 24
  • 45
Chetabahana
  • 7,806
  • 2
  • 50
  • 70
60

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

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Chand Priyankara
  • 6,485
  • 1
  • 38
  • 59
  • 2
    That's Java EE too :: [javax.ws.rs.core.MediaType](http://docs.oracle.com/javaee/6/api/javax/ws/rs/core/MediaType.html#APPLICATION_JSON) – Edward J Beckett Feb 28 '14 at 03:01
53

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.

Rohit Gupta
  • 2,411
  • 11
  • 21
  • 36
Mehmet_
  • 554
  • 4
  • 8
51

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.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Ankit Zalani
  • 2,890
  • 5
  • 22
  • 46
  • 9
    The first part of your answer is wrong. "application/jsonp" is not a valid MIME type. The response body of a JSONP is just JavaScript, so one of the MIME-types for JavaScript has to be used. – Rob W Aug 30 '13 at 16:14
45

PHP developers use this:

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

    // Do something here...
?>
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
45

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.

jgomo3
  • 1,051
  • 10
  • 24
  • 3
    `application/vnd.api+json` seems to be specifically for apis using [json:api](http://jsonapi.org/), a very narrow specification with its own expectations and format, I don't understand it to be for *any* API that returns json. Please correct me if I'm wrong – Hilikus Jul 25 '16 at 22:49
42

If you get data from REST API in JSON so 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
MeTitus
  • 3,204
  • 1
  • 19
  • 46
Krishna
  • 793
  • 1
  • 9
  • 23
31

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

Prajwal Dhatwalia
  • 209
  • 1
  • 4
  • 14
Iresha Rubasinghe
  • 803
  • 1
  • 10
  • 27
31

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 IE versions used to use as html attribute.
Content-Type: text/x-javascript - JavaScript Media Types BUT obsolete
Content-Type: text/x-json - json before application/json got officially registered.

Axifive
  • 830
  • 2
  • 15
  • 27
Kashif Solangi
  • 481
  • 5
  • 9
10

Always try to remember these three content types even though there are many content types. as you may have to use these more frequently.

  • Content-Type: application/json
  • Content-Type: application/xml
  • Content-Type: text/html
cherankrish
  • 1,564
  • 1
  • 12
  • 9
9

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.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
behzad babaei
  • 731
  • 7
  • 8
  • If I may start an argument here: The accept header in the request does not make the server reply in that format. As you said, it's the desired format. The q qualifier is a wieghtage. The server app can go ahead and reply in whatever format it desires if it doesn't do as the request says. Along the same vein, if the server app only supports xml, specifying json won't do any auto-convert; you'll get an xml response. – Hussain Akbar Nov 29 '19 at 05:26
9

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 here: https://tools.ietf.org/html/rfc4627

more information on binary transfer encoding here: https://www.w3.org/Protocols/rfc1341/5_Content-Transfer-Encoding.html

Nubok
  • 3,113
  • 6
  • 24
  • 45
sammyb123
  • 435
  • 1
  • 6
  • 19
9

To complement the rest of 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

Community
  • 1
  • 1
Alejandro Nava
  • 832
  • 1
  • 9
  • 23
3

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.

Al-Amin
  • 508
  • 3
  • 14
Hussain Akbar
  • 324
  • 2
  • 16
2

As some research,

Most commonly 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' => 'stackoverflow'], 

      ]; 

    
// Showing the json data 

echo json_encode($directory);     


   ?>

Output is,

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

  • 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' => 'stackoverflow'], 

      ]; 

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

  

?> 

Output is,

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

And for other MIME Types see full detail here,

https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types

shirsh shukla
  • 1,751
  • 2
  • 10
  • 17