Skip to content

Instantly share code, notes, and snippets.

@monkov
Last active May 23, 2018 20:28
Show Gist options
  • Save monkov/5a90828fec66ed569d4043d634866b96 to your computer and use it in GitHub Desktop.
Save monkov/5a90828fec66ed569d4043d634866b96 to your computer and use it in GitHub Desktop.
return next.handle(req).catch(err => {
console.log(err);
if (err.status === 401) {
if (err.error.message == "Token is exp") {
//TODO: Token refreshing
}else {
//Logout from account or do some other stuff
}
}
return Observable.throw(err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment