Я получаю ошибку 401 при попытке переопределить существующий POST новыми данными. Выдает 401. Как я мог заметить, это xmlhttprequest. Код и экран chrome консоли:
const send = function(method,url,data){
const promise = new Promise(function(resolve,reject){
const xhr = new XMLHttpRequest();
xhr.open(method, url)
xhr.responseType = "json"
xhr.setRequestHeader("Content-type", "application/json");
xhr.onload = function(){
resolve(xhr.response)
};
xhr.send(JSON.stringify(data))
});
return promise;
};
const final = function(){
send("POST", "https://www.thecrims.com/api/v1/input",{
email:"yes",
password:"no"
}).then(function(responseData){
console.log(responseData)
});
};