CORB blocking JSONP GET Request
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Attempting to tap http://www.anagramica.com/api to determine all words that can be made from an inputted word. As expected cross-origin policy does not allow using a normal GET request to receive the JSON data. On the anagramica homepage, JSONP is mentioned. I attempted implementing this below.
<!DOCTYPE html>
<html>
<head>
<script src="jquery-3.3.1.min.js"></script>
<title>word play</title>
</head>
<body>
<h1>Speak A Word</h1>
<script>
document.body.onclick = function()
$.getJSON("http://www.anagramica.com/all/dog?callback=?",function(json)
console.log(json);
);
</script>
</body>
</html>
This resulted in the following error.
"Cross-Origin Read Blocking (CORB) blocked cross-origin response http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615 with MIME type application/json. See https://www.chromestatus.com/feature/5629709824032768 for more details."
Relevant posts here: Loading cross-domain endpoint with jQuery AJAX
Make cross-domain ajax JSONP request with jQuery
Wondering why JSONP is not working in this case?
cross-domain jsonp cross-domain-policy cross-origin-read-blocking
add a comment |
Attempting to tap http://www.anagramica.com/api to determine all words that can be made from an inputted word. As expected cross-origin policy does not allow using a normal GET request to receive the JSON data. On the anagramica homepage, JSONP is mentioned. I attempted implementing this below.
<!DOCTYPE html>
<html>
<head>
<script src="jquery-3.3.1.min.js"></script>
<title>word play</title>
</head>
<body>
<h1>Speak A Word</h1>
<script>
document.body.onclick = function()
$.getJSON("http://www.anagramica.com/all/dog?callback=?",function(json)
console.log(json);
);
</script>
</body>
</html>
This resulted in the following error.
"Cross-Origin Read Blocking (CORB) blocked cross-origin response http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615 with MIME type application/json. See https://www.chromestatus.com/feature/5629709824032768 for more details."
Relevant posts here: Loading cross-domain endpoint with jQuery AJAX
Make cross-domain ajax JSONP request with jQuery
Wondering why JSONP is not working in this case?
cross-domain jsonp cross-domain-policy cross-origin-read-blocking
2
http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615
doesn’t return a response that’s usable as JSONP — instead it just returns normal JSON data, with an application/json content-type (instead of the text/javascript content-type it should return if it were intended for JSONP use).
– sideshowbarker
Nov 14 '18 at 2:58
You might want to instead try proxying the response, as explained in the How to use a CORS proxy to get around “No Access-Control-Allow-Origin header” problems section of the answer at stackoverflow.com/questions/43871637/…
– sideshowbarker
Nov 14 '18 at 3:00
Okay, I see, that makes sense. Will go the proxy route, thanks!
– Caleb Carithers
Nov 14 '18 at 5:27
add a comment |
Attempting to tap http://www.anagramica.com/api to determine all words that can be made from an inputted word. As expected cross-origin policy does not allow using a normal GET request to receive the JSON data. On the anagramica homepage, JSONP is mentioned. I attempted implementing this below.
<!DOCTYPE html>
<html>
<head>
<script src="jquery-3.3.1.min.js"></script>
<title>word play</title>
</head>
<body>
<h1>Speak A Word</h1>
<script>
document.body.onclick = function()
$.getJSON("http://www.anagramica.com/all/dog?callback=?",function(json)
console.log(json);
);
</script>
</body>
</html>
This resulted in the following error.
"Cross-Origin Read Blocking (CORB) blocked cross-origin response http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615 with MIME type application/json. See https://www.chromestatus.com/feature/5629709824032768 for more details."
Relevant posts here: Loading cross-domain endpoint with jQuery AJAX
Make cross-domain ajax JSONP request with jQuery
Wondering why JSONP is not working in this case?
cross-domain jsonp cross-domain-policy cross-origin-read-blocking
Attempting to tap http://www.anagramica.com/api to determine all words that can be made from an inputted word. As expected cross-origin policy does not allow using a normal GET request to receive the JSON data. On the anagramica homepage, JSONP is mentioned. I attempted implementing this below.
<!DOCTYPE html>
<html>
<head>
<script src="jquery-3.3.1.min.js"></script>
<title>word play</title>
</head>
<body>
<h1>Speak A Word</h1>
<script>
document.body.onclick = function()
$.getJSON("http://www.anagramica.com/all/dog?callback=?",function(json)
console.log(json);
);
</script>
</body>
</html>
This resulted in the following error.
"Cross-Origin Read Blocking (CORB) blocked cross-origin response http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615 with MIME type application/json. See https://www.chromestatus.com/feature/5629709824032768 for more details."
Relevant posts here: Loading cross-domain endpoint with jQuery AJAX
Make cross-domain ajax JSONP request with jQuery
Wondering why JSONP is not working in this case?
cross-domain jsonp cross-domain-policy cross-origin-read-blocking
cross-domain jsonp cross-domain-policy cross-origin-read-blocking
edited Nov 14 '18 at 0:14
Caleb Carithers
asked Nov 12 '18 at 6:37
Caleb CarithersCaleb Carithers
134
134
2
http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615
doesn’t return a response that’s usable as JSONP — instead it just returns normal JSON data, with an application/json content-type (instead of the text/javascript content-type it should return if it were intended for JSONP use).
– sideshowbarker
Nov 14 '18 at 2:58
You might want to instead try proxying the response, as explained in the How to use a CORS proxy to get around “No Access-Control-Allow-Origin header” problems section of the answer at stackoverflow.com/questions/43871637/…
– sideshowbarker
Nov 14 '18 at 3:00
Okay, I see, that makes sense. Will go the proxy route, thanks!
– Caleb Carithers
Nov 14 '18 at 5:27
add a comment |
2
http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615
doesn’t return a response that’s usable as JSONP — instead it just returns normal JSON data, with an application/json content-type (instead of the text/javascript content-type it should return if it were intended for JSONP use).
– sideshowbarker
Nov 14 '18 at 2:58
You might want to instead try proxying the response, as explained in the How to use a CORS proxy to get around “No Access-Control-Allow-Origin header” problems section of the answer at stackoverflow.com/questions/43871637/…
– sideshowbarker
Nov 14 '18 at 3:00
Okay, I see, that makes sense. Will go the proxy route, thanks!
– Caleb Carithers
Nov 14 '18 at 5:27
2
2
http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615
doesn’t return a response that’s usable as JSONP — instead it just returns normal JSON data, with an application/json content-type (instead of the text/javascript content-type it should return if it were intended for JSONP use).– sideshowbarker
Nov 14 '18 at 2:58
http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615
doesn’t return a response that’s usable as JSONP — instead it just returns normal JSON data, with an application/json content-type (instead of the text/javascript content-type it should return if it were intended for JSONP use).– sideshowbarker
Nov 14 '18 at 2:58
You might want to instead try proxying the response, as explained in the How to use a CORS proxy to get around “No Access-Control-Allow-Origin header” problems section of the answer at stackoverflow.com/questions/43871637/…
– sideshowbarker
Nov 14 '18 at 3:00
You might want to instead try proxying the response, as explained in the How to use a CORS proxy to get around “No Access-Control-Allow-Origin header” problems section of the answer at stackoverflow.com/questions/43871637/…
– sideshowbarker
Nov 14 '18 at 3:00
Okay, I see, that makes sense. Will go the proxy route, thanks!
– Caleb Carithers
Nov 14 '18 at 5:27
Okay, I see, that makes sense. Will go the proxy route, thanks!
– Caleb Carithers
Nov 14 '18 at 5:27
add a comment |
0
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257006%2fcorb-blocking-jsonp-get-request%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257006%2fcorb-blocking-jsonp-get-request%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
2
http://www.anagramica.com/all/dog?callback=jQuery33106950206857384036_1542003732614&_=1542003732615
doesn’t return a response that’s usable as JSONP — instead it just returns normal JSON data, with an application/json content-type (instead of the text/javascript content-type it should return if it were intended for JSONP use).– sideshowbarker
Nov 14 '18 at 2:58
You might want to instead try proxying the response, as explained in the How to use a CORS proxy to get around “No Access-Control-Allow-Origin header” problems section of the answer at stackoverflow.com/questions/43871637/…
– sideshowbarker
Nov 14 '18 at 3:00
Okay, I see, that makes sense. Will go the proxy route, thanks!
– Caleb Carithers
Nov 14 '18 at 5:27