gpt4 book ai didi

c# - 无法让 Blazor WASM AAD 应用程序角色工作

转载 作者:行者123 更新时间:2023-12-04 12:58:29 24 4
gpt4 key购买 nike

所以我通过遵循 Microsoft 文档开始了事情:
Secure an ASP.NET Core Blazor WebAssembly hosted app with Azure Active Directory
Azure AD Groups, Administrative Roles, and user-defined roles
在 Azure 方面似乎设置得很好:
这工作正常:

@page "/clients"
@inject NavigationManager navigationManager
@inject HttpClient Http
@inject AppData appData
@inject AuthenticationStateProvider AuthenticationStateProvider
@attribute [Authorize]
我已经打印了声明以查看发生了什么:
protected async override Task OnInitializedAsync()
{
var authState = await AuthenticationStateProvider.GetAuthenticationStateAsync();
var user = authState.User;

foreach (var claim in user.Claims)
{
System.Diagnostics.Debug.WriteLine(claim.Type + ":" + claim.ValueType + ":" + claim.Value);
}
}
这是打印的行之一:
roles:http://www.w3.org/2001/XMLSchema#string:["Admin"]
所以我可以看到我在 Azure 上的应用程序 list 中添加的 appRole 到了这里。 (GUID 隐藏在下面以保护隐私)
"appRoles": [
{
"allowedMemberTypes": [
"User"
],
"description": "Can view everything.",
"displayName": "Global Viewer",
"id": "IDGOESHERE",
"isEnabled": true,
"lang": null,
"origin": "Application",
"value": "GlobalViewer"
},
{
"allowedMemberTypes": [
"User"
],
"description": "Admins can access restricted areas.",
"displayName": "Admin",
"id": "IDGOESHERE",
"isEnabled": true,
"lang": null,
"origin": "Application",
"value": "Admin"
}
],
还将我的用户添加到企业应用程序的管理员角色。
但是,在 [Authorize] 属性指令中添加角色会使我无法访问页面:(您无权访问此资源。)
attribute [Authorize(Roles = "Admin")]
这是在 Program.cs 中(我在“GUIDGOESHERE”中有实际的 GUID)
builder.Services.AddMsalAuthentication(options =>
{
builder.Configuration.Bind("AzureAd", options.ProviderOptions.Authentication);
options.ProviderOptions.DefaultAccessTokenScopes.Add("GUIDGOESHERE/EmployeesAccess");
options.ProviderOptions.DefaultAccessTokenScopes.Add("GUIDGOESHERE/AdminAccess");
options.UserOptions.RoleClaim = "roles";
});
问题可能出在我的角色声明中。也许问题是这个声明看起来像一个数组?如果是这样,我该如何解决?

最佳答案

事实证明 Azure 可能比 ASP.NET Core 领先一点
Azure AD 身份验证默认模板无法立即使用,需要稍作调整。
按照此处 MS 文档中的步骤操作:Azure AD Groups, Administrative Roles, and user-defined roles
长话短说:

  • 它具有单一角色,开箱即用。例如“管理员”
  • 问题是有多个角色。
  • “角色”声明作为字符串“[Admin,User]”到达,该字符串与“Admin”或“User”不匹配
  • CustomUserAccount 类将角色分解为 string[] 对象,从而解决了问题。
  • Microsoft 在记录解决方法方面做得很好。 (上面的链接)
  • 关于c# - 无法让 Blazor WASM AAD 应用程序角色工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62812702/

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