Graph API를 사용하여 Azure B2C에서 Invite 만들기
Damien Bod의 this great post을 읽는 동안 Azure B2C에서 사용자를 초대하기 위해 동일한 작업을 수행할 생각이 들었습니다.
Azure에서 권한 구성
the doc에 따라 다음이 필요합니다.
애플리케이션에서 가져오기:
암호
권한을 구성한 후에는 다음 코드를 사용할 수 있습니다(ID/비밀 포함).
string[] scopes = new string[1] { "https://graph.microsoft.com/.default"};
var tenantId = "<YOUR_TENANT_ID>";
// Values from app registration
var clientId = "<YOUR_APPLICATION_ID>";
var clientSecret = "<YOUR_SECRET>";
var options = new TokenCredentialOptions
{
AuthorityHost = AzureAuthorityHosts.AzurePublicCloud,
};
// https://docs.microsoft.com/dotnet/api/azure.identity.clientsecretcredential
var clientSecretCredential = new ClientSecretCredential(
tenantId, clientId, clientSecret, options);
var _graphServiceClient = new GraphServiceClient(clientSecretCredential, scopes);
var invitation = new Invitation()
{
InvitedUserEmailAddress= "<EMAIL>",
InviteRedirectUrl ="<YOUR_APPLICATION_URL>",
SendInvitationMessage = false,
};
_graphServiceClient.Invitations.Request().AddAsync(invitation);
다음 NuGet 패키지 사용:
도움이 되었기를 바랍니다 !
Reference
이 문제에 관하여(Graph API를 사용하여 Azure B2C에서 Invite 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/antoinega/create-invite-on-azure-b2c-with-graph-api-38l4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)