הפתרון:
services.AddAuthentication()
.AddGoogle(options =>
{
options.ClientId = "xxxm";
options.ClientSecret = "rrr";
options.Events.OnRemoteFailure = ctx =>
{
ctx.Response.Redirect(ctx.Properties.RedirectUri);
ctx.HandleResponse();
return Task.CompletedTask;
};
});