Answers for ".net core login redirect loop"

C#
0

.net core login redirect loop

// Startup.cs
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
	// authentication has to come before authorization, or you get an infinite redirect!
	app.UseAuthentication()
	app.UseAuthorization()
}
Posted by: Guest on November-11-2020

C# Answers by Framework

Browse Popular Code Answers by Language