我从https://aspnetboilerplate.com/Templates (带有 Angular SPA 的 ASP.NET Core)下载了免费模板,现在正在尝试集成 Azure AD 身份验证。我已经尝试了 Microsoft 提供的一些示例,这些示例都可以正常工作,但是,我无法让它与此模板一起使用。
谁能指导我如何使用 ABPAuthorize 属性进行设置?我目前正在从登录服务获取有效的 JWT 令牌,但是在使用此令牌时,我收到了 403 禁止错误。
提前致谢!
我从https://aspnetboilerplate.com/Templates (带有 Angular SPA 的 ASP.NET Core)下载了免费模板,现在正在尝试集成 Azure AD 身份验证。我已经尝试了 Microsoft 提供的一些示例,这些示例都可以正常工作,但是,我无法让它与此模板一起使用。
谁能指导我如何使用 ABPAuthorize 属性进行设置?我目前正在从登录服务获取有效的 JWT 令牌,但是在使用此令牌时,我收到了 403 禁止错误。
提前致谢!
我正在努力解决同样的问题。我提出了这个想法,但它只解决了部分问题。在您应该能够通过 Azure AD 与控制器连接之后
"Authentication": {
"AzureAd": {
"IsEnabled": "true",
"Instance": "https://login.microsoftonline.com/",
"Domain": "myDomain.onmicrosoft.com",
"TenantId": "57****t6",
"ClientId": "8a***44",
"CallbackPath": "/signin-oidc"
}
app.UseAuthorization();
public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
{
...
app.UseAuthentication();
app.UseAuthorization();
...
}
public static void Configure(IServiceCollection services, IConfiguration configuration)
{
if (bool.Parse(configuration["Authentication:AzureAd:IsEnabled"]))
{
services.AddAuthentication(AzureADDefaults.BearerAuthenticationScheme)
.AddAzureADBearer(options => configuration.Bind("Authentication:AzureAd", options));
services.Configure<OpenIdConnectOptions>(AzureADDefaults.OpenIdScheme, options =>
{
options.Authority = options.Authority + "/v2.0/";
options.TokenValidationParameters.ValidateIssuer = false;
});
} ...
}
[Authorize(AuthenticationSchemes = AzureADDefaults.BearerAuthenticationScheme)]
[Authorize(AuthenticationSchemes = AzureADDefaults.BearerAuthenticationScheme)]
[Route("api/[controller]/[action]")]
[ApiController]
public class HelloController : LouncherPadControllerBase
{
[HttpGet]
public string Get()
{
return "Hello, this controller works!";
}
}
在 ABP 框架中验证或注册用户