Answers for "how to create an axios instance with headers"

11

header in axios

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

axios.post headers example

axios.post(
'https://example.com/postSomething', 
{ // this is the body
 email: varEmail, 
 password: varPassword
},
{
  headers: {
    Authorization: 'Bearer ' + varToken
  }
})
Posted by: Guest on June-10-2021

Code answers related to "how to create an axios instance with headers"

Code answers related to "Javascript"

Browse Popular Code Answers by Language