Create test users for Azure AD B2C

Is there a way to programmatically create users for testing using Azure AD B2C? The only way to create users that I know of is by registering a website. Did I miss something?

+4
source share
1 answer

Yes, the Azure AD B2C Graph API allows you to perform CRUD operations for users.

You can create a user by sending a "POST" request to the / users endpoint.

The following documentation demonstrates this using utc B2CGraphClient files written in C #: Azure AD B2C: use a graph (see the GitHub link on the page to download sample code)

, Azure AD B2C : " " " ". , .

+3

Source: https://habr.com/ru/post/1652773/


All Articles