英文:
Is possible for azure ad b2c validate user's credentials with an external api?
问题
在我的工作中,我们需要创建一个OpenID Connect提供程序,以与另一个Azure AD B2C实例(oidc身份提供程序)进行集成。
挑战在于oidcp必须通过API与本地系统进行集成,以获取或验证用户的凭据(公司不希望将用户迁移到B2C)。
Azure AD B2C自定义策略是否可以实现这一目标?
另一个解决方案可以是使用Microsoft Graph将用户复制到Azure AD B2C并同步密码,但在这家公司中可能更繁琐。
英文:
In my work we have the need to create an OpenId Connect Provider to integrate to another Azure AD B2C Instance (oidc identity provider).
The challenge is the oidcp must integrate with the onpremise system via API to get or validate the user's credentials. (The company doesn't want to migrate users to B2C).
It is possible with Azure AD B2C Custom Policies?
Another solution can be replicate users to Azure AD B2C using Microsoft Graph and synchronise passwords, but it's more bureaucratic in this company.
答案1
得分: 1
Yes, you can use REST API.
There's a sample here.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论