Skip to content

Instantly share code, notes, and snippets.

@chriskuech
Created April 1, 2020 20:01
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 chriskuech/10385716d9209972aa251d95cf791527 to your computer and use it in GitHub Desktop.
Save chriskuech/10385716d9209972aa251d95cf791527 to your computer and use it in GitHub Desktop.
public static class Constants
{
public const string ConfigurationRoute = ".well-known/openid-configuration";
public const string TokenRoute = "token";
public const string KeysRoute = "keys";
public const string Issuer = "https://tokenservice.myorg.com";
public const int TokenLifespanMins = 60; // AAD's default lifespan.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment