// Вот я получаю данные
data.toString('hex') //01108003383639323434303430303034313135d5ed
// Если разбить на каждые две цифры то получается
data.toString('hex').match(/.{1,2}/g)
/*
[
'01', '10', '80', '03',
'38', '36', '39', '32',
'34', '34', '30', '34',
'30', '30', '30', '34',
'31', '31', '35', 'd5',
'ed'
]
*/
fetch("https://api3.****", {
method: "POST",
headers: {
'Content-Type': "application/json; charset=UTF-8"
},
body: JSON.stringify({
"login": "****",
"pass": "****"
})
})
.then(function(response){
console.log(response.json());
})
.catch(error => {
console.log(error)
});
fetch("https://api3.****", {
method: "POST",
headers: {
'Content-Type': "application/json; charset=UTF-8"
},
body: JSON.stringify({
"login": "****",
"pass": "****"
})
})
.then(function(response){
console.log(response.json());
})
.catch(error => {
console.log(error)
});
this.http.post(url, {
login, password
})