在我的Web浏览器开发人员工具中,我正在尝试获取请求。 并且收到401(未经授权)错误。
我知道我具有正确的凭据,因为它可以在邮递员中使用。你能帮我了解错在哪里吗?也许是语法吗?
我认为错误在
{Authorization:'Basic YWIamnottypingouttherestofmycreds'}
但是我已经尝试了所有这些变化,即:
{'Authorization':'Basic YWIamnottypingouttherestofmycreds'}
{Authorization:Basic YWIamnottypingouttherestofmycreds}
{'Authorization':Basic YWIamnottypingouttherestofmycreds}
fetch("http:/someoneelsesite.com",{mode:"no-cors",headers:{Authorization:'Basic YWIamnottypingouttherestofmycreds'}}).then (a => a.text()).then(console.log)