Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueleresca/424b2062a9cee7daa58672e5fdec0d1d to your computer and use it in GitHub Desktop.
Save samueleresca/424b2062a9cee7daa58672e5fdec0d1d to your computer and use it in GitHub Desktop.
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AutomaticAuthenticate = true,
AutomaticChallenge = true,
AuthenticationScheme = "Cookie",
CookieName = Configuration.GetSection("TokenAuthentication:CookieName").Value,
TicketDataFormat = new CustomJwtDataFormat(
SecurityAlgorithms.HmacSha256,
tokenValidationParameters)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment