I have a client API app that consumes a private API from a web application, I use Bearer authorization to authenticate. I get the Bearer using the following call: grant_type=password&username={Username}&password={Password}&client_id={clientID}&tenant_id={TenantID}
Then I use the returned Bearer to authenticate to the APIs.
All has been working fine until we added SSO authentication to the application using Azure AD with SAML 2.0
I checked Azure documentation and found the following: https://docs.microsoft.com/en-us/azure/active-directory/develop/single-sign-on-saml-protocol
I'm not sure from where to start,Can you please give me some guidance on the steps to add to my current application in order for it to support the new SSO authentication?
Thanks!