gpt4 book ai didi

javascript - React 中的承载身份验证

转载 作者:行者123 更新时间:2023-12-03 00:39:52 24 4
gpt4 key购买 nike

如何在 React 中将承载身份验证与 superagent 结合使用?我不确定语法,也找不到示例。

我现在做什么

   showTransactionList = () => {
superagent
.post('http://193.124.114.46:3001/api/protected/transactions')
.set({'Authorization': 'Bearer ' + this.state.id_token})
.accept('application/json')
.then(res => {
const posts = JSON.stringify(res.body);
console.log(posts);
})
.catch((err) => {
console.log(err);
throw err;
});
}

谢谢!

最佳答案

而不是设置完整的标题

.set({'授权': '承载' + this.state.id_token})

你可以使用

.auth(this.state.id_token, { type: 'bearer' })

关于javascript - React 中的承载身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53507153/

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