I have a Api-App hosted on Azure. I have another existing JavaScript web app client. In the web-app client I am using external login providers like goolge and Facebook login and storing the respective access tokens.
After reading the articles on how to authenticate Api-App using Azure AD, or Facebook, I understand that while calling the Api-App service I just need to add 'x-zumo-auth'
and its corresponding value to the request header and that will do the magic.
Now my question is how can I reuse the access tokens as already acquired in my web-app client, in calling the Api-App service without again making a separate call to http://[gatewayurl]/login/[providername]
?