Answers for "nodejs axios with header"

8

header in axios

axios.post('url', {"body":data}, {
    headers: {
    'Content-Type': 'application/json'
    }
  }
)
Posted by: Guest on September-24-2020
0

axios.headers.common

// Set authorization headers on axios
axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
Posted by: Guest on September-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language