Skip to content

Instantly share code, notes, and snippets.

@prsnnami
Created March 12, 2018 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prsnnami/718632bf090c091783a7dddba686c421 to your computer and use it in GitHub Desktop.
Save prsnnami/718632bf090c091783a7dddba686c421 to your computer and use it in GitHub Desktop.
axios.interceptors.response.use(function (response) {
return response;
}, function (error) {
if (error.response.status === 401) {
// Log Out
}
return Promise.reject(error);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment