This file contains hidden or 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
public void ConfigureAuth(IAppBuilder app) | |
{ | |
... | |
app.UseIntuitAuthentication(); | |
} |
This file contains hidden or 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
nuget install owin.security.providers |
This file contains hidden or 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
public sealed class IntuitAuthenticationOptions : OpenIDAuthenticationOptions | |
{ | |
public const string FirstName = "intuit.firstname"; | |
public const string LastName = "intuit.lastname"; | |
public const string Email = "intuit.email"; | |
public IntuitAuthenticationOptions() | |
{ | |
ProviderDiscoveryUri = "https://openid.intuit.com/openid/xrds"; | |
Caption = "Intuit"; |