Alguém sabe o porque da esse erro?
TypeError: Failed to execute ‘setRequestHeader’ on ‘XMLHttpRequest’: Value is not a valid ByteString.
O código é o seguinte:
mounted(){
axios.get('https://api.omni.chat/v1/chats?order=-createdAt&limit=10', {
headers: {
'x-api-key': 'key',
'x-api-secret': 'key',
'Content-Type': 'application/json',
"Accept": "application/json",
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': '*',
// 'Authorization': 'zAuGBFw9QX1mTCrIjPMXpaG0PgziOEEt2uYEGwt4',
// 'Content-Type': 'application/json'
}
})
.then(response => {
console.log(response.data)
})
.catch((error) => {
console.log(error)
})
}