I'm trying to implement SAML authentication in .Net Core 3.1. I'm using the sample project TestWebAppCore from this official repo.
I have the values below and I need to adapt the sample project considering Azure AD as an Identity Provider:
Login URLAzure AD IdentifierLogout URL- I also have a
.xmland a.cerfile.
My questions are:
Login URLis the configurationSingleSignOnDestination?Logout URLis the configurationSingleLogoutDestination?Azure AD Identifieris the configurationIdPMetadata?- Can I remove the code that refers to
SigningCertificatePassword(.pfxfile) and add reference to my.cerfile? - Do I need to use the
xmlfile? Where?
If you integrate with an Azure AD Enterprise Application I think you should use the Enterprise Applications metadata to configure (config parameter
IdPMetadata) ITfoxtec Identity SAML 2.0 in the .NET application.