I understand. It is quasi-Angular specific. What I mean is I can add header interceptors easily enough, but the issue I am having with Auth0 is that my interceptors are set up to use Observables and it appears that Auth0 utilizes Promises. I don’t mind using Promises, but since our app already utilizes Observables, I would have to do something like
import ‘rxjs/add/observable/fromPromise’;
Which seems somewhat ‘hacky’.
I am using Angular 7 by the way.
I will read through the links you shared, but if you have further thoughts, let me know. Thanks!