我在 CyberArk 的 .NET SDK 上找不到任何好的文档。
我正在尝试使用以下代码集成 CyberArk 密码管理系统以获取 Outlook 帐户的密码
PSDKPasswordRequest passReq = new PSDKPasswordRequest();
PSDKPassword password = null;
// What is the purpose of CredFile??
passReq.CredFilePath = "F:\\CredFiles\\AppUser.cred";
passReq.Safe = "SAFE_NAME";
passReq.Folder = "root";
passReq.Object = userName;
passReq.Reason = "Get some stuff done.";
// Sending the request to get the password
password = CyberArk.AIM.NetPasswordSDK.PasswordSDK.GetPassword(passReq);
但是我无法连接并收到以下错误
"PDKTC006E Failed to connect to provider (Reason=[connect command failed])"\