GET from IE11 on google not working

I am developing an extension for IE11 and as part of it. I am using the xhr (GET) page on the google settings page. The code runs on the original page.

These are the details I'm going through -

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

And then the bell -

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

It works great on Firefox, Chrome, Safari, Chromium, and it has even worked on IE11 until today.

The answer I get is

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

Cache is not a problem.

Any ideas? Thank.

+4
source share
1 answer

There may be a security update behind this:

This problem occurs if an Internet connection is established through certain proxies when the SPDY / 3 protocol is enabled in Internet Explorer.

, Internet Explorer. .

. 2925418.

0

Source: https://habr.com/ru/post/1598252/


All Articles