Basecamp API 请求导致 Access-Control-Allow-Origin 错误
我正在尝试从 Chrome 扩展程序向 Basecamp 执行 AJAX 请求以进行身份验证,以便我可以提取任务。我已将 https://site.basecamphq.com
添加到 manifest.json 中的权限中。但是,当执行此函数时,我会在控制台中看到以下内容:
XMLHttpRequest 无法加载 https://site.basecamphq.com。 Access-Control-Allow-Origin 不允许 Origin chrome-extension://0123456789
$("#login").click(function()
{
$.ajax({
type: "GET",
dataType: 'html',
url: "https://site.basecamphq.com",
username: "username",
password: "X",
success: function(data){
$("#example").append(data);
}
});
});
我也将 https://*/
添加到我的 manifest.json 权限中,但没有运气。
I am trying to perform an AJAX request from a Chrome Extension to Basecamp to authenticate in so I can pull tasks. I have added https://site.basecamphq.com
to the permissions in manifest.json. However, when this function is executed, I get this in my console:
XMLHttpRequest cannot load https://site.basecamphq.com. Origin chrome-extension://0123456789 is not allowed by Access-Control-Allow-Origin
$("#login").click(function()
{
$.ajax({
type: "GET",
dataType: 'html',
url: "https://site.basecamphq.com",
username: "username",
password: "X",
success: function(data){
$("#example").append(data);
}
});
});
I have added https://*/
to my manifest.json permissions as well, but no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用后台页面从内容脚本执行 AJAX 请求。
后台页面代码:
内容脚本代码:
You need to use background page for doing AJAX requests from a content script.
Background page code:
Content script code: