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'
}
});
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'
}
});
axios headers basic authorization
await axios.post(session_url, {}, {
auth: {
username: uname,
password: pass
}
});
how to send header in axios
const username = ''
const password = ''
const token = Buffer.from(`${username}:${password}`, 'utf8').toString('base64')
const url = 'https://...'
axios.post(url, {
headers: {
'Authorization': `Basic ${token}`
}
})
axios default headers authorization
axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
axios post headers authorization
//Data:name and passWord
//url:https://api-dev.thebar.ke
axios.post("url","Data").then(res => {
console.log(res)
localStroge.setItem("access",accessToken)
localStroge.setItem("refresh",refreshToken)
})
//برای لاگین فقط باید اطلاعتی که از ورودی گرفته میشود در هیدر فرستاده شود اگر اطلاعات فرستاده شده درست باشد شما می توانید به توکن دسترسی داشته باشد
//jaberBatoii
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us