Implementing OAuth 2.0 + openID token with ASP.NET5

Advertisements I have the following code which seems to not do anything when I run the project. I expect a browser redirect to happen to http://localhost:5000 requesting the "code" authorization flow. Instead I just see "Hello World". This is my startup.cs file: using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.IdentityModel.Protocols.OpenIdConnect; using… Read More Implementing OAuth 2.0 + openID token with ASP.NET5