I have an angular2 application which is secured using openid-connect and oauth2. After the user is authenticated the application access an webapi1 which is secured. Everything working fine until here.
Now i want to access another secured webapi say for eg: webapi2 from webapi1 method. How to do this ie. how to get the bearer token to pass in httpclient?
I am using localstorage to store the access token in angular app.
Thanks