Created
July 20, 2016 20:51
-
-
Save shawnweisfeld/48b73e9c833b287c3e9115c760c694aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.UseOpenIdConnectAuthentication( | |
new OpenIdConnectAuthenticationOptions | |
{ | |
ClientId = clientId, | |
Authority = aadInstance + tenantId, | |
PostLogoutRedirectUri = postLogoutRedirectUri, | |
AuthenticationType = "AADC" | |
}); | |
app.UseOpenIdConnectAuthentication( | |
new OpenIdConnectAuthenticationOptions | |
{ | |
ClientId = clientIdGov, | |
Authority = aadInstanceGov + tenantIdGov, | |
PostLogoutRedirectUri = postLogoutRedirectUri, | |
AuthenticationType = "AADG" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment