Skip to content

Instantly share code, notes, and snippets.

@chenkie
Last active April 18, 2018 10:47
Show Gist options
  • Save chenkie/ca8344b685aa03b7d282a6c9632f0744 to your computer and use it in GitHub Desktop.
Save chenkie/ca8344b685aa03b7d282a6c9632f0744 to your computer and use it in GitHub Desktop.
import {
HttpInterceptor,
HttpRequest,
HttpResponse,
HttpHandler,
HttpEvent
} from '@angular/common/http';
import 'rxjs/add/operator/map';
@Injectable()
class JWTInterceptor implements HttpInterceptor {
constructor(private router: Router) {}
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(req).map((event: HttpEvent<any>) => {
if (event instanceof HttpResponse) {
// do stuff with response if you want
}
}, (err: any) => {
if (err instanceof HttpErrorResponse {
if (err.status === 401) {
// redirect to login
}
}
});
}
}
@toddmotto
Copy link

toddmotto commented Aug 15, 2017

@Greg5ki, thanks for posting up the .map() => .do() change, that worked perfectly for me (.map() was only executing the first success arg, not the error).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment