Created
July 12, 2019 07:51
-
-
Save shmidtelson/57a5a0fbba22b8ac940b310ebdc95d47 to your computer and use it in GitHub Desktop.
T
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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