unit WebModuleUnit1; interface uses System.SysUtils, System.Classes, Web.HTTPApp, MVCFramework, MVCFramework.Commons; type TWebModule1 = class(TWebModule) procedure WebModuleCreate(Sender: TObject); private MVC: TMVCEngine; public { Public declarations } end; var WebModuleClass: TComponentClass = TWebModule1; implementation {$R *.dfm} uses AppControllerU, System.Generics.Collections, AuthenticationU, MVCFramework.Middleware.JWT, MVCFramework.JWT, System.DateUtils; procedure TWebModule1.WebModuleCreate(Sender: TObject); var lClaimsSetup: TJWTClaimsSetup; begin lClaimsSetup := procedure(const JWT: TJWT) begin JWT.Claims.Issuer := 'Delphi MVC Framework JWT Middleware Sample'; JWT.Claims.NotBefore := Now - OneMinute * 5; // valid since 5 minutes ago JWT.Claims.IssuedAt := Now; JWT.CustomClaims['mycustomvalue'] := 'hello there'; // Here we dont use a fixed ExpirationTime but a LiveValidityWindowInSeconds // to make the ExpirationTime dynamic, incrementing the // ExpirationTime by LiveValidityWindowInSeconds seconds at each request JWT.LiveValidityWindowInSeconds := 5; // 60 * 60; // 1 hour end; MVC := TMVCEngine.Create(Self); MVC.Config[TMVCConfigKey.DocumentRoot] := '..\..\www'; MVC.Config[TMVCConfigKey.SessionTimeout] := '30'; MVC.Config[TMVCConfigKey.DefaultContentType] := 'text/html'; MVC.AddController(TApp1MainController).AddController(TAdminController) .AddMiddleware(TMVCJWTAuthenticationMiddleware.Create( TAuthenticationSample.Create, lClaimsSetup, 'mys3cr37', '/login', [ TJWTCheckableClaim.ExpirationTime, TJWTCheckableClaim.NotBefore, TJWTCheckableClaim.IssuedAt ], 0 // just for test, Leeway seconds is zero. )); end; end.