如何使用Axios在React中从经过身份验证的API获取数据?

时间:2018-09-27 09:51:03

标签: reactjs axios

我有一个经过身份验证的API,希望从中获取数据。我正在使用Axios在REACT中执行此操作。如何执行此操作?

1 个答案:

答案 0 :(得分:1)

类似以下内容

const AuthString = 'Bearer '.concat(USER_TOKEN); 
axios.get(URL, { headers: { Authorization: AuthString } })
 .then(response => {
     console.log(response.data);
  })
 .catch((error) => {
     console.log('error ' + error);
  });