I'm trying to use microsoft-adal-angular6 to get an AAD token and access my web api.
Everything seems to be working wrt logging in and getting the token, but the token isn't being added as an Auth header to the http requests.
Basically I followed the steps here:
https://www.npmjs.com/package/microsoft-adal-angular6
I think maybe it has to do with my endpoints being wrong, that seems to say this specifies when the token will be added to the requests.
The sample add this points to doesn't do anything more than login and get some info using the adal service. It doesn't show how to make an HTTP request to an endpoint having the token attached.
Usually, the task of attaching bearer token to your call in Authorization header is taken care of by the built-in interceptor AdalInterceptor provided as part of package.
Please take a look at this sample. It works with Angular 6 and Adal-Angular-4 but should be pretty similar.
Authentication with Azure AD, Angular 6 client, Web API
Specifically the implementation of Step 3 in this article.
NOTE: You haven't posted any code for the part where you're making the http call. In case this suggestion doesn't help, please add the exact code and me/others can look for issues.