Используя Ax ios, вы можете отправлять пользовательские заголовки.
axios.post('/user', {
firstName: 'Fred',
lastName: 'Flintstone'
}, {
auth: { // Only basic auth
username: 'janedoe',
password: 's00pers3cret'
},
headers: {
'X-Requested-With': 'XMLHttpRequest',
'Authorization': 'Bearer 1223..'
},
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});