Is there a way to \"bypass\" authorization in asp.net core? I noticed that the Authorize attribute no longer has a AuthorizeCore method with which you could use to make dec
Just add an anonymous filter could do the trick, simple and easy.
services.AddMvc(opts => { opts.Filters.Add(new AllowAnonymousFilter()); });
Ref: https://www.illucit.com/asp-net/asp-net-core-2-0-disable-authentication-development-environment/