JavaScript XHR 和 GitHub API
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实证明 GitHub API 支持 JSON-P。来自 http://developer.github.com/v3/#json-p-callbacks< /a>:
(强调我的)
Turns out GitHub API supports JSON-P. from http://developer.github.com/v3/#json-p-callbacks:
(emphasis mine)
这是你的朋友:
http://developer.github.com/v3/#跨域资源共享
This is your friend:
http://developer.github.com/v3/#cross-origin-resource-sharing