Last active
August 29, 2015 13:57
-
-
Save joaomoreno/9347210 to your computer and use it in GitHub Desktop.
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
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