简体   繁体   English

从IE11到谷歌的GET不起作用

[英]GET from IE11 to google doesn't work

I'm developing an extension for IE11 and as part of it I'm using an xhr (GET) to Google's settings page. 我正在为IE11开发一个扩展程序,作为其中的一部分,我正在使用xhr(GET)到Google的设置页面。 The code runs on the background page. 代码在后台页面上运行。

These are the details that I'm passing - 这些是我传递的细节 -

var details = {
            url: "https://security.google.com/settings/security/permissions?pli=1&hl=en&rt=j", 
            method: 'GET',
            async: true,
            contentType: 'text'
        }

And here's the call - 这是电话 -

kango.xhr.send(details, function(data) { 
// Yada yada yada
});

It works great on Firefox, Chrome, Safari, Chromium and it even worked on IE11 up until today. 它在Firefox,Chrome,Safari,Chromium上运行良好,甚至在IE11上工作到今天。

The response I'm getting is 我得到的回应是

{"response":"","status":"0","abort":{}}

Cache is not the problem. 缓存不是问题。

Any ideas? 有任何想法吗? Thanks. 谢谢。

There may be a security update behind this: 这可能背后有一个安全更新:

This issue occurs if the Internet connection is established through certain proxy servers when the SPDY/3 protocol is enabled in Internet Explorer. 如果在Internet Explorer中启用SPDY / 3协议时通过某些代理服务器建立Internet连接,则会出现此问题。

To resolve this issue, install the most recent cumulative security update for Internet Explorer. 要解决此问题,请安装Internet Explorer的最新累积安全更新。 To do this, go to Microsoft Update. 为此,请转到Microsoft Update。

Note This update was first included in security update 2925418. 注意此更新最初包含在安全更新2925418中。

References 参考

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM