Answers for "how to set token in axios"

1

send token in axios header

const username = ''
const password = ''

const token = Buffer.from(`${username}:${password}`, 'utf8').toString('base64')

const url = 'https://...'
const data = {
  ...
}

axios.post(url, data, {
  headers: {
    'Authorization': `Basic ${token}`
  },
})
Posted by: Guest on August-13-2020

Code answers related to "how to set token in axios"

Browse Popular Code Answers by Language