Answers for "how to add auth token header to axios"

-1

add authorization header axios

// Send a GET request with the authorization header set to
// the string 'my secret token'
const res = await axios.get('https://httpbin.org/get', {
  headers: {
    'Authorization': 'my secret token'
  }
});
Posted by: Guest on July-11-2020
0

axios headers basic authorization

await axios.post(session_url, {}, {
  auth: {
    username: uname,
    password: pass
  }
});
Posted by: Guest on May-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language