axios.post('url', {"body":data}, {
headers: {
'Content-Type': 'application/json'
}
}
)
const username = ''
const password = ''
const token = Buffer.from(`${username}:${password}`, 'utf8').toString('base64')
const url = 'https://...'
axios.post(url, {
headers: {
'Authorization': `Basic ${token}`
}
})
// Send a POST request
axios({
method: 'post',
url: '/user/12345',
data: {
firstName: 'Fred',
lastName: 'Flintstone'
},
headers: {'Authorization': 'Bearer ...'}
});
axios.post(
'https://example.com/postSomething',
{ // this is the body
email: varEmail,
password: varPassword
},
{
headers: {
Authorization: 'Bearer ' + varToken
}
})
let auth = ``; //auth key
let url = ``; //api url
const axios = require(`axios`);
axios({
method: 'get',
url: url,
headers: {
"Authorization": auth
},
}).then(function (res) {
console.log(res.data)
});
const axios = require('axios');
// httpbin.org gives you the headers in the response
// body `res.data`.
// See: https://httpbin.org/#/HTTP_Methods/get_get
const res = await axios.get('https://httpbin.org/get', {
headers: {
'Test-Header': 'test-value'
}
});
res.data.headers['Test-Header']; // "test-value"
const reponse = await axios
.post("https://sozaeng.herokuapp.com/inspection", data, {
headers: {
"x-access-token":
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYyNDliODZmMGM1YzVjMzY0N2QwM2Q2OSIsImlhdCI6MTY0OTAwMzMzNCwiZXhwIjoxNjQ5MDg5NzM0fQ.tTIYzRcbm06FQ3L10PbXydWtxHFtTovGGeYlBd7IL_Y",
"Content-Type": "application/json",
},
})
.catch((err) => {
console.log(err, "Mission Object Failed");
});
axios.defaults.headers.common['Authorization'] = `Bearer ${localStorage.getItem('access_token')}`;