<script>
function loadPhones() {
var xhr = new XMLHttpRequest();
//let data = new FormData()
//data.append('token', value)
xhr.overrideMimeType("application/json");
xhr.open('post','http://5555555555:8080/security/signIn',true,'55555','555555');
xhr.send();
if (xhr.status != 200) {
// обработать ошибку
alert('Ошибка ' + xhr.status + ': ' + xhr.statusText + ': ' + 'Connection= '+xhr.readyState);
} else {
// вывести результат
alert(xhr.responseText);
}
//console.log(xhr.getResponseHeader("content-type"));
//console.log(xhr.responseXML);
console.log(JSON.parse(xhr.responseText));
}