gpt4 book ai didi

javascript - 在javascript中从api获取数据时如何传递用户名和密码凭据?

转载 作者:行者123 更新时间:2023-11-29 18:57:06 25 4
gpt4 key购买 nike

我正在使用 flowroute api并且需要获取数据但不确定如何添加身份验证凭据,即当我在浏览器中传递查询 url 时可以看到我怎样才能在javascript中传递它。我正在使用 wix 平台并添加如下所示的 javascript 代码

// For full API documentation, including code examples, visit http://wix.to/94BuAAs
import {fetch} from 'wix-fetch';
$w.onReady(function () {
fetch('https://api.flowroute.com/v2/numbers/available?starts_with=800&limit=3?',{method: 'get',auth:{user:'28288282', pass:'099299292991'}})
.then( (httpResponse) => {
console.log(httpResponse.ok);
if (httpResponse.ok) {

return httpResponse.json();
} else {
return Promise.reject("Fetch did not succeed");



}
} )
.then(json => console.log(json))
.catch(err => console.log(err));

//TODO: write your page related code here...



});

将用户名和密码传递给 API 的正确方法是什么,以便我可以获得 json 响应而不是当前的 401 未授权响应状态

https://api.flowroute.com/v2/numbers/available?starts_with=800&limit=3 enter image description here

更新我的答案以向您显示网络调用详细信息请求和响应 header ae,如屏幕截图中给定的 bwlow enter image description here enter image description here

enter image description here

最佳答案

尝试:

fetch('https://api.flowroute.com/v2/numbers/available?starts_with=800&limit=3?', {
method: 'get',
headers: {
"Content-Type": "text/plain",
'Authorization': 'Basic ' + btoa(username + ":" + password),
},
})

关于javascript - 在javascript中从api获取数据时如何传递用户名和密码凭据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48877677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com