how to make a basic auth call using axios code example
Example 1: axios basic auth generate
await axios.post(session_url, {}, {
auth: {
username: uname,
password: pass
}
});
Example 2: Axios GET Req with Basic Auth
const res = await axios.get('https://httpbin.org/basic-auth/foo/bar', {
// Axios looks for the `auth` option, and, if it is set, formats a
// basic auth header for you automatically.
auth: {
username: 'foo',
password: 'bar'
}
});
res.status; // 200