I have a working interceptor in Angular 5. It's registered in App.module's providers and correctly intercepts all requests made from the application.
The problem is that it doesn't intercept the requests made from the libraries used by the app.
I'm using an open source library (NGX-Jsonapi), and need the interceptor to provide a token in every request that the library makes to the back-end.
Someone faced the same issue?
EDIT: the library uses HttpClient.