React身份验证API调用中的“身份验证错误:网络错误”

时间:2018-09-27 11:23:32

标签: reactjs axios

我进行了经过身份验证的API调用。.在我的代码下面,我收到“身份验证错误”

 componentDidMount()
{
    let config = {'Authorization': 'Here i have pasted the auth key from Post mAN'};

          axios.get('http://XX.XX.XX.XX/aa/bb/cc/list', { headers: config })

          .then(function(response) {
            console.log('Authenticated');
          })
          .catch(function(error) {
            console.log('Error on Authentication' + error);
          })

}

2 个答案:

答案 0 :(得分:1)

您可能已经将AuthorizationBearer一起发送了。这样吧。

let config = {'Authorization': 'Bearer '+ key};

答案 1 :(得分:0)

这取决于授权的类型。如果使用令牌授权

let config = {'Authorization': `Token ${key}`};