Prerequisites
- What is your product version? AspNetZero v8.6
- What is your product type (Angular or MVC)? Angular
- What is product framework type (.net framework or .net core)? .net core
- What is ABP Framework version? AbpBoilerplate v5.6
Scenario
- I made a new component in my module to perform importing excel file. That I based on src/app/admin/users/users.component.ts.
- I keep the original configuration about AbpHttpInterceptor ONLY in ServiceProxy module.
- Result:
- My component has not been intercepted by AbpHttpInterceptor, so the request does not have the Bearer token, and failed.
- But, users.component.ts has been intercepted so it had token, and successfully done.
Question:
Please help me to explain how the request in user component is intercepted, but mine hasn't?
*Both Admin module and MyModule module both do not import AbpHttpInterceptor.