Sphere Engine 问题 API - 错误:对预检请求的响应未通过访问控制检查:不存在访问控制允许来源
Posted
技术标签:
【中文标题】Sphere Engine 问题 API - 错误:对预检请求的响应未通过访问控制检查:不存在访问控制允许来源【英文标题】:Sphere Engine Problem API - Error : Response to preflight request doesn't pass access control check: no access control allow origin is present 【发布时间】:2016-11-11 16:49:53 【问题描述】:我正在使用 sphere-engine api。 我想发送一个 GET 请求以获取他们拥有的编译器列表。
根据他们的文档..我可以通过这样做获得列表。
请求示例(CURL)
curl -X GET -H 'Content-Type: application/json' "http://db4262da.problems.sphere-engine.com/api/v3/compilers?access_token=xxxx"
现在我想使用 AJAX 请求来完成。
这是我的代码..
$.ajax(
type: "GET",
url: "http://db4262da.problems.sphere-engine.com/api/v3/compilers?access_token=xxxx",
contentType: "application/json",
success: function(result, data)
// var obj = JSON.parse(result);
// $scope.submitId = obj.id;
// console.log(obj.id);
,
);
问题是。我总是收到这个错误
XMLHttpRequest 无法加载 http://db4262da.problems.sphere-engine.com/api/v3/compilers?access_token=xxxx。对预检请求的响应未通过访问控制检查:请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,Origin 'http://heuricode.dev' 不允许访问。响应的 HTTP 状态代码为 405。
【问题讨论】:
【参考方案1】:您不应在 javascript 代码级别使用 Sphere Engine API。请注意,您的access_token
将公开。因此,每个人都可以看到并使用它。
您应该从应用程序的后端与 Sphere Engine API 进行通信。如果您想对 Sphere Engine API 进行异步调用,您应该构建自己的层。最后,异步调用可能如下所示:
ajax_call_to_your_application -> your_backend -> Sphere Engine
【讨论】:
以上是关于Sphere Engine 问题 API - 错误:对预检请求的响应未通过访问控制检查:不存在访问控制允许来源的主要内容,如果未能解决你的问题,请参考以下文章
Google Compute Engine:无法从 gcloud 终端查询 API