Is there a way to programmatically create users for testing with Azure AD B2C? The only way to create users that I am aware of is through website signup. Am I missing something?
标签:
azure-ad-b2c
相关问题
- How To Use LocalStorage with MSAL.js
- Query Azure AD Graph for B2C SignInName
- Adding users to Azure B2C without using a sign-up
- redirect_uri_mismatch Azure AD B2C with angular us
- How to force change password after first login
相关文章
- Azure B2C - Multiple Reply Url
- Authentication on angular spa using msal.js
- Receiving 403 error when accessing Azure function
- Azure AD B2C - Refresh_Token refresh claims via RE
- Azure Ad b2c : Add new member user with invitation
- What use are 'Scopes' in Azure B2C Authent
- Invalid usename or password when sigining local ac
- Is it possible to validate the Email claim from So
Yes, Azure AD B2C Graph API allows CRUD operations on users.
You can create a user by sending a "POST" request to the /users endpoint.
The following documentation demonstrates this with a "B2CGraphClient" utils written in C# : Azure AD B2C: Use the Graph (see GitHub link in the page to download the sample code)
Please note there are two types of user account in Azure AD B2C : "local accounts" and "work or school accounts". Required parameters vary upon the account type you need.