This commit is contained in:
Adrien Pessu 2023-06-21 08:11:39 +00:00
Родитель e85987bfc5
Коммит 7dfb404fd7
2 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -6,13 +6,13 @@ let password = 'passwd';
let headers = new Headers();
//headers.append('Content-Type', 'text/json');
headers.append('Content-Type', 'text/json');
headers.append('Authorization', 'Basic' + base64.encode(username + ":" + password));
fetch(url, {method:'GET',
headers: headers,
credentials: `${user}:${passwd}`
fetch(url, {
method:'GET',
headers: headers
})
.then(response => response.json())
.then(json => console.log(json));
.then(json => console.log(json))
.done();

Просмотреть файл

@ -6,13 +6,13 @@ let password = process.env.PASSWORD;
let headers = new Headers();
//headers.append('Content-Type', 'text/json');
headers.append('Content-Type', 'text/json');
headers.append('Authorization', 'Basic' + base64.encode(username + ":" + password));
fetch(url, {method:'GET',
headers: headers,
credentials: `${user}:${passwd}`
})
fetch(url, {
method:'GET',
headers: headers
})
.then(response => response.json())
.then(json => console.log(json));
.then(json => console.log(json))
.done();