📜  如何使用 fetch 发送基本身份验证 - BASIC 代码示例

📅  最后修改于: 2022-03-11 14:52:01.815000             🧑  作者: Mango

代码示例1
fetch(url, {
    ...options, 
    headers: {
        'Authorization': 'Basic ' + btoa(`${username}:${password}`)
    }
})
.then(response => response.json())
.then(json => console.log(json));