Authenticate a user on Azure AD B2C using Graph API

后端 未结 2 1683
小鲜肉
小鲜肉 2020-12-22 07:33

I have created a WebApi app which can create a user on Azure AD B2C tenant using Graph API.

Now the user has to authenticate on Azure AD B2C as the same way I have u

相关标签:
2条回答
  • 2020-12-22 07:36

    It is not possible to authenticate an user in azure AD using graph API. Graph API provides methods to various AD related operations on the users, signed on user, groups, directory roles, policies and so on. https://msdn.microsoft.com/en-us/library/azure/ad/graph/api/users-operations

    0 讨论(0)
  • 2020-12-22 07:45

    You can programmatically authenticate users against Azure AD using a certain call but MS refuses to officially support the method in libraries, despite it existing for over 4 years.

    For node, the denied pull request is here: https://github.com/AzureAD/azure-activedirectory-library-for-nodejs/pull/99?_pjax=%23js-repo-pjax-container

    The code repo referenced in the pull is here: https://github.com/testdouble/azure-activedirectory-library-for-nodejs/tree/client_secret_optional

    0 讨论(0)
提交回复
热议问题