[Vuejs]-AXIOS : Send Authorization header returns Error 401, Authorization Header missing

2👍

Found the solution:

axios.defaults.headers.common['Authorization'] = this.AuthToken;

0👍

Try to add another header. “Access-Control-Allow-Headers” : “*”.

Leave a comment