以前はADAL(Active Directory認証ライブラリ)を使用してユーザーをプログラムで追加していましたが、今は "signInNames"電子メール)、それはADALで可能ではないようです(間違っているかどうか教えてください)。http投稿要求を使用して、Azure Active Directory(B2C)with Graph APIで新しいユーザーを作成する
今、the documentation on MSDNに続いて、HTTP POSTを使用してプログラムで新しいユーザー(ローカルアカウント)を追加しようとしています。
//Get access token (using ADAL)
var authenticationContext = new AuthenticationContext(AuthString, false);
var clientCred = new ClientCredential(ClientId, ClientSecret);
var authenticationResult = authenticationContext.AcquireTokenAsync(ResourceUrl, clientCred);
var token = authenticationResult.Result.AccessToken;
//HTTP POST CODE
const string mail = "[email protected]";
// Create a new user object.
var user = new CustomUser
{
accountEnabled = true,
country = "MS",
creationType = "LocalAccount",
displayName = mail,
passwordPolicies = "DisablePasswordExpiration,DisableStrongPassword",
passwordProfile = new passwordProfile { password = "jVPmEm)6Bh", forceChangePasswordNextLogin = true },
signInNames = new signInNames { type = "emailAddress", value = mail }
};
var url = "https://graph.windows.net/" + TenantId + "/users?api-version=1.6";
var jsonObject = JsonConvert.SerializeObject(user);
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
var response = client.PostAsync(url,
new StringContent(JsonConvert.SerializeObject(user).ToString(),
Encoding.UTF8, "application/json"))
.Result;
if (response.IsSuccessStatusCode)
{
dynamic content = JsonConvert.DeserializeObject(
response.Content.ReadAsStringAsync()
.Result);
// Access variables from the returned JSON object
var appHref = content.links.applications.href;
}
}
しかし、私はこの応答を取得し、何の成功を持っていない:
{StatusCode: 400, ReasonPhrase: 'Bad Request', Version: 1.1, Content:....}
任意のアイデアを私は何をすべきか?私はPowershellスクリプトを使用して成功しましたが、私はC#アプリケーションでこれを行う必要があります。