Azure Active Directoryを調べています。カスタムユーザーID /パスワードコントロールを使用して独自のログインページを使用して、ユーザーの資格情報を取得し、Azure ADに対して検証できるかどうかを確認しようとしています。私はこれを実装するためにADAL.netを使用していますが、 "parsing_wstrust_response_failed:WS-Trustレスポンスの解析に失敗しました"というエラーが表示されます。次のコードの最後の行にこのエラーが表示されます。ADAL.net AcquireTokenAsyncコールの使用中にエラーが発生しました。
以下は私のコードです:
string AppIdURL = ConfigurationManager.AppSettings["AppIdUrl"];
UserCredential uc = new UserPasswordCredential("[email protected]", "test123");
AuthenticationContext aContext = new AuthenticationContext(System.Configuration.ConfigurationManager.AppSettings["AADInstance"]);
AuthenticationResult result = aContext.AcquireTokenAsync(AppIdURL, ConfigurationManager.AppSettings["ClientId"], uc).Result;