Angular http Interceptor

Angular http Interceptor and AuthInterceptor

HTTP Interception is an important feature of @angular/common/http. It enables an application to inspect responses and requests made to it. Typically, one or more interceptors form a forward-and-backward chain of handlers. Angular apps use Http Interceptor to intercept HTTP requests and channel them before they pass to the web server. To understand how angular interceptor work, […]

Continue Reading