最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - getting Refused to execute script from '*' because its MIME type ('applicationjson'

programmeradmin2浏览0评论

Please find below my code to get response from confluence rest api:

<script type="text/javascript" src="Scripts/jquery.min.js"></script>
<script>
    $.ajax({
        type: "GET",
        url: ";spaceKey=xxxxx&expand=space,body.view,version,container",
        contentType: "application/json; charset=utf-8",
        dataType: "jsonp",
        jsonp: 'jsonp-callback',
        async: false,
        success: function (result) {
            console.log(result);
        },
        error: function (xhr, errorText) {
            console.log('Error ' + xhr.responseText);
        }
    });
</script>

I referred this and this as reference but it did not resolve my isse. I am getting error on console Refused to execute script from ';spaceKey=xxxxx&…d=space,body.view,version,container&callback=jsonpCallback&_=1413187692508' because its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.

I tried with type:post, dataType:json and dataType:jsonp with jsonp: jsonp-callback. None of these worked for me.

In Network tab of chrome developer tools I am getting resposne from confluence but it does not print the same on console or on page.

If I use dataType:json, I am getting an error XMLHttpRequest cannot load ;spaceKey=xxxxx&expand=space,body.view,version,container. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://localhost' is therefore not allowed access on chrome.

Update Adding mime type application/json for json in IIS does not work.

Updated code

$.ajax({
            type: 'GET',            
            url: ';spaceKey=xxxxx&expand=space,body.view,version,container',   
            dataType: 'jsonp',
            xhrFields: {                
                withCredentials: false
            },
            headers: {
                "Accept" : "application/json; charset=utf-8",
                "Content-Type": "application/javascript; charset=utf-8",
                "Access-Control-Allow-Origin" : "*"
            },
            success: function (result) {
                $('#blog').html(result);
            },
            error: function (xhr, errorText) {
                console.log('Error ' + xhr.responseText);
            }
        });

Still getting the same error.

Response Body

results: [{id:3342352, type:blogpost, title:The stocks that are set to fly (or crash),…},…]
0: {id:3342352, type:blogpost, title:The stocks that are set to fly (or crash),…}
1: {id:3833861, type:blogpost, title:Before earnings season, it's downgrade season,…}
2: {id:3833876, type:blogpost, title:Petrobras - what goes up, must e down,…}
3: {id:3833882, type:blogpost, title:Fishing for Ine in the FTSE 100,…}
4: {id:4489219, type:blogpost, title:A Ray of Light Among the Gathering German Gloom,…}
5: {id:4489234, type:blogpost, title:Insider trading falls as buybacks dominate share prices,…}
6: {id:4489241, type:blogpost, title:El Clasico: Nike vs Adidas,…}
7: {id:4489248, type:blogpost, title:Dollar uncertainty exposes investors' placency,…}
8: {id:4489254, type:blogpost, title:Worst yet to e for the Australian miners,…}
9: {id:4489258, type:blogpost, title:Using Aggregate List Views to Find Lurking Risks,…}
size: 10
start: 0

How do I reolve the issue of MIME type ('application/json') is not executable, and strict MIME type checking is enabled in confluence rest api ???

Please find below my code to get response from confluence rest api:

<script type="text/javascript" src="Scripts/jquery.min.js"></script>
<script>
    $.ajax({
        type: "GET",
        url: "https://blog.xxxxx./rest/api/content?type=blogpost&spaceKey=xxxxx&expand=space,body.view,version,container",
        contentType: "application/json; charset=utf-8",
        dataType: "jsonp",
        jsonp: 'jsonp-callback',
        async: false,
        success: function (result) {
            console.log(result);
        },
        error: function (xhr, errorText) {
            console.log('Error ' + xhr.responseText);
        }
    });
</script>

I referred this and this as reference but it did not resolve my isse. I am getting error on console Refused to execute script from 'https://blog.xxxxx./rest/api/content?type=blogpost&spaceKey=xxxxx&…d=space,body.view,version,container&callback=jsonpCallback&_=1413187692508' because its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.

I tried with type:post, dataType:json and dataType:jsonp with jsonp: jsonp-callback. None of these worked for me.

In Network tab of chrome developer tools I am getting resposne from confluence but it does not print the same on console or on page.

If I use dataType:json, I am getting an error XMLHttpRequest cannot load https://blog.xxxxx./rest/api/content?type=blogpost&spaceKey=xxxxx&expand=space,body.view,version,container. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://localhost' is therefore not allowed access on chrome.

Update Adding mime type application/json for json in IIS does not work.

Updated code

$.ajax({
            type: 'GET',            
            url: 'https://blog.xxxxx./rest/api/content?type=blogpost&spaceKey=xxxxx&expand=space,body.view,version,container',   
            dataType: 'jsonp',
            xhrFields: {                
                withCredentials: false
            },
            headers: {
                "Accept" : "application/json; charset=utf-8",
                "Content-Type": "application/javascript; charset=utf-8",
                "Access-Control-Allow-Origin" : "*"
            },
            success: function (result) {
                $('#blog').html(result);
            },
            error: function (xhr, errorText) {
                console.log('Error ' + xhr.responseText);
            }
        });

Still getting the same error.

Response Body

results: [{id:3342352, type:blogpost, title:The stocks that are set to fly (or crash),…},…]
0: {id:3342352, type:blogpost, title:The stocks that are set to fly (or crash),…}
1: {id:3833861, type:blogpost, title:Before earnings season, it's downgrade season,…}
2: {id:3833876, type:blogpost, title:Petrobras - what goes up, must e down,…}
3: {id:3833882, type:blogpost, title:Fishing for Ine in the FTSE 100,…}
4: {id:4489219, type:blogpost, title:A Ray of Light Among the Gathering German Gloom,…}
5: {id:4489234, type:blogpost, title:Insider trading falls as buybacks dominate share prices,…}
6: {id:4489241, type:blogpost, title:El Clasico: Nike vs Adidas,…}
7: {id:4489248, type:blogpost, title:Dollar uncertainty exposes investors' placency,…}
8: {id:4489254, type:blogpost, title:Worst yet to e for the Australian miners,…}
9: {id:4489258, type:blogpost, title:Using Aggregate List Views to Find Lurking Risks,…}
size: 10
start: 0

How do I reolve the issue of MIME type ('application/json') is not executable, and strict MIME type checking is enabled in confluence rest api ???

Share Improve this question edited May 23, 2017 at 11:52 CommunityBot 11 silver badge asked Oct 13, 2014 at 8:20 ValayValay 1,9993 gold badges47 silver badges104 bronze badges 4
  • Possible duplicate question : stackoverflow./questions/24528211/… – Michael Plakhov Commented Oct 13, 2014 at 9:31
  • @MichaelPlakhov - It's duplicate but the solutions given in that question does not work. And my questions is specifically for confluence rest api. – Valay Commented Oct 13, 2014 at 9:40
  • 1 contentType: "application/json; charset=utf-8" is nonsense. You are making a GET request. There is no request body to describe the content-typeo f. – Quentin Commented Oct 13, 2014 at 10:07
  • I am experiencing the same issue. And I cannot solve it now. Continue finding a helpful answer :| – NoName Commented Jul 4, 2016 at 4:20
Add a ment  | 

2 Answers 2

Reset to default 3

https://blog.xxxxx./rest/api/content?type=blogpost&spaceKey=xxxxx&expand=space,body.view,version,container is returning JSON.

You are telling jQuery to read it as JSONP.

JSON and JSONP are different.

You need to either change the server to respond with JSONP or change the JavaScript to expect JSON.

No 'Access-Control-Allow-Origin' header is present on the requested resource

If you change the client to expect JSON, then you also need to change the server (blog.xxxxx.) to provide the CORS headers that give the browser permission to ignore the Same Origin Policy.

I see this in Docs:

Only available on GET. The returned content type MUST be application/javascript .

Also check JSONP enabled

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论