admin管理员组文章数量:1344207
How can I use Bearer Authentication with superagent in React? I am not sure in syntax and can't find an example.
What I do now
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;
});
}
How can I use Bearer Authentication with superagent in React? I am not sure in syntax and can't find an example.
What I do now
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;
});
}
Thnx!
Share edited Jul 25, 2020 at 18:28 rkta 4,5998 gold badges29 silver badges38 bronze badges asked Nov 27, 2018 at 19:54 Andrew FleyerAndrew Fleyer 871 gold badge1 silver badge7 bronze badges 2-
1
When I ping your endpoint with no Auth header, I get
UnauthorizedError: No Authorization header was found
. With a token of 'test', I getUnauthorizedError: jwt malformed
. With an actual jwt, I getUnauthorizedError: invalid signature
. Are you able to determine whether the header is being set at all and which response you are getting? – user6080677 Commented Nov 27, 2018 at 20:45 - 1 Thanks a lot!! Everything works not. And all ok with this code. Prooblem was in id_token (it was emplty) ,Sorry, And sending SET not like a single object was useful too. Thnx A LOT! – Andrew Fleyer Commented Nov 28, 2018 at 15:39
3 Answers
Reset to default 4rather than setting the full header with
.set({'Authorization': 'Bearer ' + this.state.id_token})
you can use
.auth(this.state.id_token, { type: 'bearer' })
The way headers are set is by providing the header item name and value, try:
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;
});
}
So instead of setting the object in the header, pass it as 2 parameters (name, value).
Try using .auth('Bearer', this.state.id_token)
http://visionmedia.github.io/superagent/#authentication
本文标签: javascriptBearer Authentication in ReactStack Overflow
版权声明:本文标题:javascript - Bearer Authentication in React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743688667a2522316.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论