skip to Main Content

Azure ClientCertificateCredential – Using SNI

I'm trying to authenticate to an Azure AD Application using ClientCertificateCredential (in C#): using Azure.Identity; var credential = new ClientCertificateCredential("TenantId", "AppId", @"pathtocert.pfx"); on the application, I had configured the certificate's SNI as a trusted certificated: "trustedCertificateSubjects": [ { "authorityId": "auth…

VIEW QUESTION
Back To Top
Search