Currently, I am working on an IE11 extension, which involves using an XMLHttpRequest (GET) to retrieve data from Google's settings page. The code is executed on the extension's background page.
Here are the specific details I am including in the request -
var parameters = {
url: "https://security.google.com/settings/security/permissions?pli=1&hl=en&rt=j",
method: 'GET',
async: true,
contentType: 'text'
}
Below is the actual request being made -
kango.xhr.send(details, function(data) {
// Placeholder for actual code
});
This code has functioned flawlessly on Firefox, Chrome, Safari, and Chromium, but recently encountered an issue on IE11. The response I am receiving is as follows -
{"response":"","status":"0","abort":{}}
Cache has been ruled out as the source of the problem.
If you have any suggestions or ideas, I would greatly appreciate your input. Thank you.