Ugochukwu Umerie

Results 2 comments of Ugochukwu Umerie

Hello, My case is, different projects (i.e modules as in modular monolith application controlled by a bootstrapper project) but all added to and managed by the same solution. How would...

``` options.Events = new JwtBearerEvents { OnMessageReceived = context => { var accessToken = context.Request.Query["access_token"]; var path = context.HttpContext.Request.Path; if (!string.IsNullOrEmpty(accessToken) && path.StartsWithSegments("/hubs")) { context.Token = accessToken; } return Task.CompletedTask;...