You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Website with required Windows Authentication ->
Windows Authentication needs to get passed via GM_xmlhttpRequest (as it worked in previous Tampermonkey Mv2, f.e. 5.1.1) to be able to get access to the requested file/website.
Actual Behavior
In Tampermonkey for Mv3 (f.e. v5.2.3 and latest beta 5.3.6207) the Windows Authentication apparently does not get passed to the page/file i try to access via GM_xmlhttpRequest.
Due to that im getting a 401 unauthorized when trying to access the page/file which requires the Windows Authentication.
Expected Behavior
Website with required Windows Authentication ->
Windows Authentication needs to get passed via GM_xmlhttpRequest (as it worked in previous Tampermonkey Mv2, f.e. 5.1.1) to be able to get access to the requested file/website.
Actual Behavior
In Tampermonkey for Mv3 (f.e. v5.2.3 and latest beta 5.3.6207) the Windows Authentication apparently does not get passed to the page/file i try to access via GM_xmlhttpRequest.
Due to that im getting a 401 unauthorized when trying to access the page/file which requires the Windows Authentication.
Specifications
Script
// ==UserScript==
// @name Script
// @match https://exampleWebsite.com/*
// @grant GM_xmlhttpRequest
// ==/UserScript==
GM_xmlhttpRequest({
method: "GET",
url: "https://example.com/json/jsonData.json",
responseType: "json",
onload: function (result) {
console.warn(result.status);
}
});
The text was updated successfully, but these errors were encountered: