gpt4 book ai didi

c# - 授权属性不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 15:51:31 25 4
gpt4 key购买 nike

我已经下载了位于以下位置的 Microsoft.AspNet.Identity.Samples Pre: https://www.nuget.org/packages/Microsoft.AspNet.Identity.Samples

此外,我还从 GitHub 上改编了一个示例。

在这两种情况下,每当我尝试访问“RolesAdmin”即 ~/rolesadmin/页面时,它都会将我踢回登录页面。

我已确认用户已登录且属于 Admin 角色,那么为什么 Authorize 属性不允许我进入角色管理页面?

namespace IdentitySample.Controllers
{
[Authorize(Roles = "Admin")]
public class RolesAdminController : Controller
...

这是我用于确认的代码(ViewBag.IsLoggedIn 和 ViewBag.IsAdmin 都在登录后返回为 true:

  if (User.Identity.IsAuthenticated)
{
MyDbContext context = new MyDbContext();

var UserManager = new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(context));
var RoleManager = new RoleManager<IdentityRole>(new RoleStore<IdentityRole>(context));

var appUser = UserManager.FindByName("Admin");

var userIsInRole = UserManager.IsInRole(appUser.Id, "Admin");
ViewBag.IsLoggedIn = true;
ViewBag.IsAdmin = userIsInRole;
}
else
{
ViewBag.IsLoggedIn = false;
ViewBag.IsAdmin = false;
}

如果那里有适用于 ASP.NET Identity 2.1.0 的良好示例代码 - 请告诉我。

为什么我不能访问这个 Controller ?

我看过这个页面: MVC 5 Asp.Net Identity Authorize Attribute error

这个页面: ASP.NET Identity - Confusion about [Authorize] And RoleManager

这个页面: Custom Forms Authentication + MVC3 + AuthorizeAttribute

这些似乎都没有帮助。

注意:我使用的是 VS2012 和最新的工具更新,SQL Server 2012 express。此外,在其中一个代码示例中,您会看到我创建了一个名为 Admin 的用户和一个名为 Admin 的角色 - 我只是复制了我必须承认的代码。

web.config 的相关位似乎没有区别:

<membership>
<providers>
<clear />
</providers>
</membership>

<roleManager enabled="true">
<providers>
<clear />
</providers>
</roleManager>

<system.webServer>
<modules runAllManagedModulesForAllRequests="true" >
<remove name="RoleManager" />
</modules>
</system.webServer>



public class FilterConfig
{
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
filters.Add(new AuthorizeAttribute()); // Added this in a vein attempt
}
}

创业类

public partial class Startup
{
public void ConfigureAuth(IAppBuilder app)
{
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Account/Login")
});

app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);

AccountController 上的登录代码:

 [HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public async Task<ActionResult> Login(LoginViewModel model, string returnUrl)
{
if (ModelState.IsValid)
{
var user = await UserManager.FindAsync(model.UserName, model.Password);
if (user != null)
{
await SignInAsync(user, model.RememberMe);
return RedirectToLocal(returnUrl);
}
else
{
ModelState.AddModelError("", "Invalid username or password.");
}
}

// If we got this far, something failed, redisplay form
return View(model);
}

SignInAsync 代码:

private async Task SignInAsync(ApplicationUser user, bool isPersistent)
{
AuthenticationManager.SignOut(DefaultAuthenticationTypes.ExternalCookie);
var identity = await UserManager.CreateIdentityAsync(user, DefaultAuthenticationTypes.ApplicationCookie);
// Add more custom claims here if you want. Eg HomeTown can be a claim for the User
//var homeclaim = new Claim(ClaimTypes.Country, user.HomeTown);
//identity.AddClaim(homeclaim);
AuthenticationManager.SignIn(new AuthenticationProperties() { IsPersistent = isPersistent }, identity);
}

我希望 Microsoft 示例开箱即用,这是我发现最令人困惑的地方......

最佳答案

回答:

1) 使用 https://www.nuget.org/packages/Microsoft.AspNet.Identity.Samples -Pre

不要在您的网站上注册,然后期望获得对受授权属性保护且角色设置为管理员的 Controller 的访问权限。您的新用户不会被分配到管理员角色。使用默认登录:admin@example.com 密码为 Admin@123456

2) 我发现从 asp.net 网站链接的这个 github 示例 ( https://github.com/rustd/AspnetIdentitySample/tree/master/AspnetIdentitySample ) 要么已经损坏(因为它没有在没有手动将“类”一词添加到类继承的情况下构建),要么只是过时了。

3) 从示例中复制时,请注意 web.config 和子 web.config 配置。

4) 您可能不希望集成我上面的一些代码,因为它不在示例(有效的示例)中。

现在我可以继续,不受阻碍地为我的家庭/酿酒/园艺项目构建基于传感器 arduino yun 的信号记录、报告和可视化网站。

关于c# - 授权属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25631357/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com