GET from IE11 to google doesn't work

257 Views Asked by At

I'm developing an extension for IE11 and as part of it I'm using an xhr (GET) to Google's settings page. 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.

The response I'm getting is

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

Cache is not the problem.

Any ideas? Thanks.

1

There are 1 best solutions below

2
Paul Sweatte On

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.

To resolve this issue, install the most recent cumulative security update for Internet Explorer. To do this, go to Microsoft Update.

Note This update was first included in security update 2925418.

References