JavaScript XHR 和 GitHub API

发布于 2024-12-09 09:54:53 字数 134 浏览 0 评论 0原文

我正在尝试使用 XHR 访问 GitHub HTTP API,但我被同源策略严重击败。我很确定 easyXDM 对此来说太过分了,但我不知道我还可以使用什么(如果还有其他的话)。有没有比 easyXDM 更简单的方法从我的网站访问 GitHub API?

I'm trying to use XHR to access the GitHub HTTP API, and I'm being rather badly defeated by the Same Origin Policy. I'm quite sure that easyXDM is overkill for this, but I don't know what else (if there is anything else) that I can use. Is there some easier way than easyXDM to get from my website to the GitHub API?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兲鉂ぱ嘚淚 2024-12-16 09:54:53

事实证明 GitHub API 支持 JSON-P。来自 http://developer.github.com/v3/#json-p-callbacks< /a>:

您可以向任何 GET 调用发送一个callback参数来获取
结果封装在 JSON 函数中。这通常在以下情况下使用
浏览器希望通过绕过来将 GitHub 内容嵌入到网页中
跨域问题

(强调我的)

Turns out GitHub API supports JSON-P. from http://developer.github.com/v3/#json-p-callbacks:

You can send a callback parameter to any GET call to have the
results wrapped in a JSON function. This is typically used when
browsers want to embed GitHub content in web pages by getting around
cross domain issues
.

(emphasis mine)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文