javascript 为什么API调用在git hub页面中不起作用

ecfsfe2w  于 2023-02-11  发布在  Java
关注(0)|答案(1)|浏览(132)

我刚刚完成我的新闻网站,虽然运行在本地主机的vs代码,它的工作完美,但托管在gh- page API不工作。这里是我的仓库的链接:-https://github.com/Ankitsahu640/Express-Time-News
这里是托管gh-page的链接:-https://ankitsahu640.github.io/Express-Time-News/
that's how my site seen in local host of vs code

2ul0zpep

2ul0zpep1#

我尝试复制您的代码,发现您正在向https://newsapi.org/v2/top-headlines?country=in&apiKey=dbddeef57b58421aafd6a26534fd9d8d发送请求的第三方API
不允许您发送请求从broswer除了从本地主机,这就是为什么它的工作在您的本地机器。
下面是完整的答复:

{
    status: "error",
    code: "corsNotAllowed",
    message: "Requests from the browser are not allowed on the Developer plan, except from localhost."
}

相关问题