Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shmidtelson/57a5a0fbba22b8ac940b310ebdc95d47 to your computer and use it in GitHub Desktop.
Save shmidtelson/57a5a0fbba22b8ac940b310ebdc95d47 to your computer and use it in GitHub Desktop.
T
axios.interceptors.response.use(
response => response,
error => {
const originalRequest = error.config;
// EXPIRED TOKEN
if (error.response.status === 401 && error.response.data.code === "token_not_valid") {
originalRequest._retry = true;
store.dispatch('AUTH_REFRESH_TOKEN', {
router: router
}).then((response) => {
originalRequest.headers['Authorization'] = 'Bearer ' + store.getters.GET_TOKEN;
return axios(originalRequest)
}).catch((error) => {
store.dispatch('AUTH_LOGOUT')
})
}
return Promise.reject(error);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment