Answers for "how to pass custom authorization header in axios"

6

axios set authorization header

const username = ''
const password = ''

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

const url = 'https://...'

axios.post(url, {
  headers: {
    'Authorization': `Basic ${token}`
  }
})
Posted by: Guest on April-21-2020
0

set auth header on axios instance

import axios from 'axios';

// use a middleware to intercept this action and pull token
// axios will automatically include header in all http requests

export function setToken(token) {
  axios.defaults.headers.common['Authorization'] =
      `Bearer ${token}`;
}
Posted by: Guest on March-25-2022

Code answers related to "how to pass custom authorization header in axios"

Code answers related to "Javascript"

Browse Popular Code Answers by Language