Skip to content

Instantly share code, notes, and snippets.

@SteveSyfuhs
Created February 10, 2014 20:06
Show Gist options
  • Save SteveSyfuhs/8923172 to your computer and use it in GitHub Desktop.
Save SteveSyfuhs/8923172 to your computer and use it in GitHub Desktop.
public class MySecurityTokenServiceConfiguration : SecurityTokenServiceConfiguration
{
public MySecurityTokenServiceConfiguration()
{
ImportSecurityTokenHandlers();
}
private void ImportSecurityTokenHandlers()
{
SecurityTokenHandlers.AddOrReplace(new JwtSecurityTokenHandler());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment