I紺碧のパスワードプロファイル更新するために次のコードを持っている:AzureのグラフAPIは - パスワードの変更は動作しません
ActiveDirectoryClient client = AuthenticationHelper.GetActiveDirectoryClient();
IUser toUpdate = await client.Users.GetByObjectId(user.ObjectId).ExecuteAsync();
toUpdate.PasswordProfile = new PasswordProfile()
{
ForceChangePasswordNextLogin = false,
Password = password
};
toUpdate.UpdateAsync().Wait();
は、どうやら私はアズール(クラウド)でユーザーパスワードを変更することができていますが、それをローカルのActive Directoryに書き戻されません。私はAzure Coennectの設定を見直し、PasswordWriteBackオプションがチェックされています。
あなたはAAD Premiumエディションを使用していますか?原因[パスワードの書き戻し](https://docs.microsoft.com/en-us/azure/active-directory/active-directory-passwords/#what-is-possible-with-azure-ad-password-reset)が必要ですAzure ADプレミアム。 – forester123
お返事ありがとうございます。はいAAD Premiumを使用しています。パスワードリセットも設定されています。 –