I have the following:
- An existing WEB application using SAML for authentication. Using B2C custom policies, I have successfully set up Azure AD B2C to allow this application to authenticate users using SAML.
- An API (ASP.NET Web API) using OpenID connect to authenticate callers (on the same Azure AD B2C).
I would like to authenticate calls from the Web Application to the WebAPI using the identity of the Web application authenticated user. So I have would need a JWT token so I can validate it in my API middleware. Is there any simple way of converting the SAML Assertion to a JWT token so the Web application can send it to my API with requests ? I have read somewhere that IdentityServer could do the job using Azure ACS (For AAD B2C ?) but I understand that ACS will be retired on November...
Thanks.