如何使用来自另一个项目 api 的 IdentityServer4 UserManager 方法
Posted
技术标签:
【中文标题】如何使用来自另一个项目 api 的 IdentityServer4 UserManager 方法【英文标题】:How to use IdentityServer4 UserManager method from another project api 【发布时间】:2021-10-10 02:11:42 【问题描述】:我有一个位于目录D:\IdentityServer
中的身份服务器项目,并且有一个位于目录D:\WebApi
中的api 项目-web api 正在使用另一个数据库并由身份服务器进行身份验证。
我试过了:
private readonly UserManager<IdentityUser> _userManager;
public GetProductsHandler(UserManager<IdentityUser> userManager)
但我明白了
为 MediatR.IRequestHandler
2[TestService.Queries.GetProductsHandler
1[TestSerice.Dtos.ProductsDto]] 类型的请求构造处理程序时出错。向容器注册您的处理程序。有关示例,请参阅 GitHub 中的示例。
如何调用 UserManager(来自 Identity Server)通过用户名获取用户信息或使用获取用户角色?
【问题讨论】:
【参考方案1】:在您的 API 中,您需要在 Startup.cs 中注入所有身份对象:
services.AddScoped<IUserValidator<ApplicationUser>, UserValidator<ApplicationUser>>();
services.AddScoped<IPasswordValidator<ApplicationUser>, PasswordValidator<ApplicationUser>>();
services.AddScoped<IPasswordHasher<ApplicationUser>, PasswordHasher<ApplicationUser>>();
services.AddScoped<ILookupNormalizer, UpperInvariantLookupNormalizer>();
services.AddScoped<IRoleValidator<ApplicationRole>, RoleValidator<ApplicationRole>>();
services.AddScoped<IdentityErrorDescriber>();
services.AddScoped<ISecurityStampValidator, SecurityStampValidator<ApplicationUser>>();
services.AddScoped<ITwoFactorSecurityStampValidator, TwoFactorSecurityStampValidator<ApplicationUser>>();
services.AddScoped<IUserClaimsPrincipalFactory<ApplicationUser>, UserClaimsPrincipalFactory<ApplicationUser, ApplicationRole>>();
services.AddScoped<ApplicationUserManager>();
services.AddScoped<ApplicationRoleManager>();
services.AddScoped<ApplicationSignInManager>();
services.AddScoped<UserManager<ApplicationUser>>();
services.AddScoped<SignInManager<ApplicationUser>>();
services.AddScoped<RoleManager<ApplicationRole>>();
services.AddScoped<IUserStore<ApplicationUser>, ApplicationUserStore>();
services.AddScoped<IRoleStore<ApplicationRole>, ApplicationRoleStore>();
services.AddScoped<IUserConfirmation<ApplicationUser>, DefaultUserConfirmation<ApplicationUser>>();
var identityBuilder = new IdentityBuilder(typeof(ApplicationUser), typeof(ApplicationRole), services);
identityBuilder.AddTokenProvider("Default", typeof(DataProtectorTokenProvider<ApplicationUser>));
【讨论】:
以上是关于如何使用来自另一个项目 api 的 IdentityServer4 UserManager 方法的主要内容,如果未能解决你的问题,请参考以下文章
如何使用需要来自另一个 API 端点(dog.ceo)的数据的 API 端点?
如何使用 RxSwift 和 Alamofire 库调用来自另一个 API 的响应的 API?