📜  axios 使用令牌中的标头获取请求 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:55.001000             🧑  作者: Mango

代码示例1
axios.get('https://api.github.com/user', {
  headers: {
    'Authorization': `token ${access_token}`
  }
})
.then((res) => {
  console.log(res.data)
})
.catch((error) => {
  console.error(error)
})