0
我在探索Azure Active Directory。我正在嘗試查看是否可以使用自定義用戶標識/密碼控件的自定義登錄頁面來捕獲用戶憑據並根據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;