React fetch oauth返回401

时间:2018-05-08 17:20:26

标签: javascript reactjs http spring-security-oauth2

使用React我试图在Spring安全性中使用fetch设置oauth。这是我的代码:

    fetch("http://localhost:8080/oauth/token", {
        method: 'POST',
        headers: {
            'Authorization': 'Basic bXlhcHA6',
            'Content-Type': 'application/x-www-form-urlencoded'
        },
        body: 'username=' + data.username + '&password=' + data.password + '&grant_type=password'
    })

我得到了401作为状态,这表明(据我所知)标题存在问题,但我可以弄清楚是什么。

使用Postman一切正常,使用相同的标题和正文设置。 我究竟做错了什么?感谢。

0 个答案:

没有答案