在 ASP .NET Core 6.0 中获取 Windows 用户名

问题描述 投票:0回答:2

我目前正在尝试将 ASP.NET Core 5.0 项目迁移到 ASP.NET Core 6.0。 Window 用户名显示在.NET 5.0 上。但是,对于 .NET 6 项目,窗口用户名始终使用匿名用户。我不确定我是否缺少任何代码。欢迎任何帮助/建议!

.NET CORE 6.0 窗口用户 .NET CORE 6.0 Window User

老.NET CORE 5.0 Window用户 .NET CORE 5.0 Window User

launchSettings.json

"iisSettings": {
    "windowsAuthentication": true,
    "anonymousAuthentication": false,
    "iisExpress": {
      "applicationUrl": "http://localhost:55305",
      "sslPort": 44383
    }
  }
Program.cs

using Microsoft.AspNetCore.Server.IISIntegration;
using Microsoft.AspNetCore.Authentication.Negotiate;

var builder = WebApplication.CreateBuilder(args);
// Add services to the container.

builder.Services.AddControllersWithViews();
builder.Services.AddHttpContextAccessor();

builder.Services.AddSession(options => {
    options.IdleTimeout = TimeSpan.FromMinutes(120);//You can set Time   
});

var app = builder.Build();

// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Home/Error");
    // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
    app.UseHsts();
}

app.UseHttpsRedirection();
app.UseStaticFiles();

app.UseRouting();

app.UseAuthorization();

app.UseSession();

app.MapControllerRoute(
    name: "default",
    pattern: "{controller=Home}/{action=index}/{id?}");

app.Run();
HomeController.cs

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
using WebApplication1.Models;

namespace WebApplication1.Controllers
{
    public class HomeController : Controller
    {
        private readonly ILogger<HomeController> _logger;
        private readonly IHttpContextAccessor? _httpContextAccessor;

        public HomeController(ILogger<HomeController> logger, IHttpContextAccessor httpContextAccessor)
        {
            _logger = logger;
            _httpContextAccessor = httpContextAccessor;
            string CurrentUserName = httpContextAccessor.HttpContext?.User.Identity?.Name;
        }

        public IActionResult Index()
        {
            return View();
        }

        public IActionResult Privacy()
        {
            return View();
        }

        [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
        public IActionResult Error()
        {
            return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
        }
    }
}
c# asp.net-core authentication asp.net-core-mvc window
2个回答
0
投票

出现这个问题的原因是因为你少了这行代码。

// pls add this line
app.UseAuthentication();
app.UseAuthorization();

0
投票

这个问题解决了吗?我有同样的问题。我已经尝试了一切。是的,我设置了“windowsAuthentication”:true 和“anonymousAuthentication”:false。

© www.soinside.com 2019 - 2024. All rights reserved.