Clash of Clans API ajax












0














In this script, trying to acces coc api info, i get following error:



Refused to execute script from 'https://api.clashofclans.com/v1/leagues?authorization=Bearer%20eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw&callback=jQuery33105516973593012948_1542924782029&_=1542924782030' because its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.
script.js:15 err: error


But in the developer tools -> network, i can see the data in the response (a json object)



What is wrong? i need to access the data by the code



code:



var key = "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw";
var url = "https://api.clashofclans.com/v1/leagues?authorization=" + key;
var data;

function loadLeagues() {
$.ajax({
url: url,
dataType: "jsonp",
success: function (res) {
data = res;
console.log("success: " + res)
},
error: function(err, msg) {
console.log("err: " + msg)
}
});

}









share|improve this question






















  • if the return is json object, then dataType should not be "jsonp", but only "json"
    – Jeff
    Nov 22 at 22:29










  • From API Docs :: To use the API, a JSON Web Token is required and it needs to be passed as part of every request. The token is bound to rate limitations and specified IP addresses, so you will need a web server to fetch data from the API and host your application.
    – charlietfl
    Nov 22 at 22:33












  • You need to create an ajax proxy on your server and make your ajax requests to that and in turn it requests data from api
    – charlietfl
    Nov 22 at 22:34












  • also I guess the authToken needs to be urlencoded (because of the space after Bearer)
    – Jeff
    Nov 22 at 22:34












  • And based on those comments in docs you can be sure they aren't serving jsonp or are CORS enabled
    – charlietfl
    Nov 22 at 22:37
















0














In this script, trying to acces coc api info, i get following error:



Refused to execute script from 'https://api.clashofclans.com/v1/leagues?authorization=Bearer%20eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw&callback=jQuery33105516973593012948_1542924782029&_=1542924782030' because its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.
script.js:15 err: error


But in the developer tools -> network, i can see the data in the response (a json object)



What is wrong? i need to access the data by the code



code:



var key = "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw";
var url = "https://api.clashofclans.com/v1/leagues?authorization=" + key;
var data;

function loadLeagues() {
$.ajax({
url: url,
dataType: "jsonp",
success: function (res) {
data = res;
console.log("success: " + res)
},
error: function(err, msg) {
console.log("err: " + msg)
}
});

}









share|improve this question






















  • if the return is json object, then dataType should not be "jsonp", but only "json"
    – Jeff
    Nov 22 at 22:29










  • From API Docs :: To use the API, a JSON Web Token is required and it needs to be passed as part of every request. The token is bound to rate limitations and specified IP addresses, so you will need a web server to fetch data from the API and host your application.
    – charlietfl
    Nov 22 at 22:33












  • You need to create an ajax proxy on your server and make your ajax requests to that and in turn it requests data from api
    – charlietfl
    Nov 22 at 22:34












  • also I guess the authToken needs to be urlencoded (because of the space after Bearer)
    – Jeff
    Nov 22 at 22:34












  • And based on those comments in docs you can be sure they aren't serving jsonp or are CORS enabled
    – charlietfl
    Nov 22 at 22:37














0












0








0







In this script, trying to acces coc api info, i get following error:



Refused to execute script from 'https://api.clashofclans.com/v1/leagues?authorization=Bearer%20eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw&callback=jQuery33105516973593012948_1542924782029&_=1542924782030' because its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.
script.js:15 err: error


But in the developer tools -> network, i can see the data in the response (a json object)



What is wrong? i need to access the data by the code



code:



var key = "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw";
var url = "https://api.clashofclans.com/v1/leagues?authorization=" + key;
var data;

function loadLeagues() {
$.ajax({
url: url,
dataType: "jsonp",
success: function (res) {
data = res;
console.log("success: " + res)
},
error: function(err, msg) {
console.log("err: " + msg)
}
});

}









share|improve this question













In this script, trying to acces coc api info, i get following error:



Refused to execute script from 'https://api.clashofclans.com/v1/leagues?authorization=Bearer%20eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw&callback=jQuery33105516973593012948_1542924782029&_=1542924782030' because its MIME type ('application/json') is not executable, and strict MIME type checking is enabled.
script.js:15 err: error


But in the developer tools -> network, i can see the data in the response (a json object)



What is wrong? i need to access the data by the code



code:



var key = "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiIsImtpZCI6IjI4YTMxOGY3LTAwMDAtYTFlYi03ZmExLTJjNzQzM2M2Y2NhNSJ9.eyJpc3MiOiJzdXBlcmNlbGwiLCJhdWQiOiJzdXBlcmNlbGw6Z2FtZWFwaSIsImp0aSI6ImM4MjFmNzAxLWI2ZGQtNGQzZC05ODE1LTJjZmE1OGQxOTU0OCIsImlhdCI6MTU0MjgzMzIzMiwic3ViIjoiZGV2ZWxvcGVyL2YzNzc5ZjZhLTMwYzMtZmZjMS1kZmNlLWU2ZTYzY2VmMjQ2NSIsInNjb3BlcyI6WyJjbGFzaCJdLCJsaW1pdHMiOlt7InRpZXIiOiJkZXZlbG9wZXIvc2lsdmVyIiwidHlwZSI6InRocm90dGxpbmcifSx7ImNpZHJzIjpbIjE3Ni44NC4xNDQuMjA5Il0sInR5cGUiOiJjbGllbnQifV19.ftgHBIHMbP4oYGn1_6VR0LgU5gUCOCBgnRsp-4jeeFiGq1rLYwNtaj3rFSkRytyc38Z_GfRchCKuYTAcn2D6vw";
var url = "https://api.clashofclans.com/v1/leagues?authorization=" + key;
var data;

function loadLeagues() {
$.ajax({
url: url,
dataType: "jsonp",
success: function (res) {
data = res;
console.log("success: " + res)
},
error: function(err, msg) {
console.log("err: " + msg)
}
});

}






javascript jquery api jsonp






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 at 22:24









franlol

43




43












  • if the return is json object, then dataType should not be "jsonp", but only "json"
    – Jeff
    Nov 22 at 22:29










  • From API Docs :: To use the API, a JSON Web Token is required and it needs to be passed as part of every request. The token is bound to rate limitations and specified IP addresses, so you will need a web server to fetch data from the API and host your application.
    – charlietfl
    Nov 22 at 22:33












  • You need to create an ajax proxy on your server and make your ajax requests to that and in turn it requests data from api
    – charlietfl
    Nov 22 at 22:34












  • also I guess the authToken needs to be urlencoded (because of the space after Bearer)
    – Jeff
    Nov 22 at 22:34












  • And based on those comments in docs you can be sure they aren't serving jsonp or are CORS enabled
    – charlietfl
    Nov 22 at 22:37


















  • if the return is json object, then dataType should not be "jsonp", but only "json"
    – Jeff
    Nov 22 at 22:29










  • From API Docs :: To use the API, a JSON Web Token is required and it needs to be passed as part of every request. The token is bound to rate limitations and specified IP addresses, so you will need a web server to fetch data from the API and host your application.
    – charlietfl
    Nov 22 at 22:33












  • You need to create an ajax proxy on your server and make your ajax requests to that and in turn it requests data from api
    – charlietfl
    Nov 22 at 22:34












  • also I guess the authToken needs to be urlencoded (because of the space after Bearer)
    – Jeff
    Nov 22 at 22:34












  • And based on those comments in docs you can be sure they aren't serving jsonp or are CORS enabled
    – charlietfl
    Nov 22 at 22:37
















if the return is json object, then dataType should not be "jsonp", but only "json"
– Jeff
Nov 22 at 22:29




if the return is json object, then dataType should not be "jsonp", but only "json"
– Jeff
Nov 22 at 22:29












From API Docs :: To use the API, a JSON Web Token is required and it needs to be passed as part of every request. The token is bound to rate limitations and specified IP addresses, so you will need a web server to fetch data from the API and host your application.
– charlietfl
Nov 22 at 22:33






From API Docs :: To use the API, a JSON Web Token is required and it needs to be passed as part of every request. The token is bound to rate limitations and specified IP addresses, so you will need a web server to fetch data from the API and host your application.
– charlietfl
Nov 22 at 22:33














You need to create an ajax proxy on your server and make your ajax requests to that and in turn it requests data from api
– charlietfl
Nov 22 at 22:34






You need to create an ajax proxy on your server and make your ajax requests to that and in turn it requests data from api
– charlietfl
Nov 22 at 22:34














also I guess the authToken needs to be urlencoded (because of the space after Bearer)
– Jeff
Nov 22 at 22:34






also I guess the authToken needs to be urlencoded (because of the space after Bearer)
– Jeff
Nov 22 at 22:34














And based on those comments in docs you can be sure they aren't serving jsonp or are CORS enabled
– charlietfl
Nov 22 at 22:37




And based on those comments in docs you can be sure they aren't serving jsonp or are CORS enabled
– charlietfl
Nov 22 at 22:37

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53438624%2fclash-of-clans-api-ajax%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53438624%2fclash-of-clans-api-ajax%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks