我正在尝试让AzureIP_test示例正常工作,但无法确定在哪里指定某些凭据详细信息。
当我针对测试文档运行示例版本时,出现以下错误:
An unexpected error occurred : Microsoft.InformationProtectionAndControl.InformationProtectionException: The parameter is incorrect. HRESULT: 0x80070057
怀疑我缺少凭据详细信息,但我不知道在应用程序中的何处指定详细信息。
具体来说,我认为我需要以下内容:
SymmetricKeyCredential symmetricKeyCred = new SymmetricKeyCredential();
symmetricKeyCred.AppPrincipalId = ConfigurationManager.AppSettings["AppPrincipalId"];
symmetricKeyCred.Base64Key = ConfigurationManager.AppSettings["Base64Key"];
symmetricKeyCred.BposTenantId = ConfigurationManager.AppSettings["BposTenantId"];
有谁知道指定这些详细信息的最佳位置? 我是否缺少其他有用的详细信息?
你在 GitHub 上使用的示例关联的 App.Config 文件中提供 AAD 应用程序注册信息以及登录方式
-------应用配置文件的开头
------ /.auth/login/done"/>
-------应用配置文件结束---------------------