gpt4 book ai didi

javascript - XMLHttprequest 不工作 twitch.tv api

转载 作者:行者123 更新时间:2023-11-30 16:49:12 27 4
gpt4 key购买 nike

所以我一直在尝试访问 twitch.tv api,但每次我发出请求时,我都会收到错误消息:

 "XMLHttpRequest cannot load https://api.twitch.tv/kraken/streams/normalice. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8080' is therefore not allowed access."

我目前在开发过程中使用 live-server 包,否则我只使用 html、css、javascript。这是我的 JavaScript:

var req = new XMLHttpRequest();
var url = 'https://api.twitch.tv/kraken/streams/normalice';

req.open("GET", url, true);
req.send();

req.onreadystatechange = function () {
if (req.status == 200 && req.readState == 4){
// do stuff here
console.log('hurray it worked');
}else{
console.log(req.statusText);
console.log(req.responseText);
}
}

有人知道我为什么会遇到此错误吗?

最佳答案

Twitch.tv API 不支持 CORS。您需要使用 JSON-P(又名 JSONP)来解决它。在 the Twitch.tv API docs 中阅读更多相关信息.有一个prior answer on how to make a JSONP request with native JavaScript这可能会有用。

关于javascript - XMLHttprequest 不工作 twitch.tv api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30772644/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com