Skip to content

Instantly share code, notes, and snippets.

@joaomoreno
Last active August 29, 2015 13:57
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 joaomoreno/9347210 to your computer and use it in GitHub Desktop.
Save joaomoreno/9347210 to your computer and use it in GitHub Desktop.
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using AcsOAuth2;
namespace MyApp
{
public class MvcApplication : System.Web.HttpApplication
{
public static IHttpModule JwtAuthModule = new JwtBearerAuthenticationModule("AUDIENCE_URI", "ACS_NAMESPACE", "CERTIFICATE_THUMBPRINT");
public override void Init() {
base.Init();
JwtAuthModule.Init(this);
}
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment