最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Bearer Authentication in React - Stack Overflow

programmeradmin2浏览0评论

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 get UnauthorizedError: jwt malformed. With an actual jwt, I get UnauthorizedError: 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
Add a ment  | 

3 Answers 3

Reset to default 4

rather 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

发布评论

评论列表(0)

  1. 暂无评论