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.