I have an Angular application deployed on Azure secured with Azure Active Directory. To achieve that, I have followed this guide : https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-devquickstarts-angular.
So, in order to query the website's Web API, the user needs to be authenticated on Azure Active Directory. So far, everything works great.
Now, we have a internal service, not deployed on Azure, that needs to query a method of that Web API, which is already secured as previously mentioned.
Is there a way, without using the Api Management service, to give access to the internal service in order to call the secured Web API without having the need to use a AAD username / password?
I tried using ADAL librairy, but all the example that I have seen prompt an AAD username password login.