DocuSign AuthenticationApi 在调用 Login() 函数时失败



我的演示文档在调用 AuthenticationApi.Login(( 函数时终止。上周这对我来说效果很好,我没有做任何代码更改来影响身份验证。代码从登录中退出。

string authHeader = "{"Username":"" + Username + "", "Password":"" + Password + "", "IntegratorKey":"" + IntegratorKey + ""}";
DocuSign.eSign.Client.Configuration.Default.AddDefaultHeader("X-DocuSign-Authentication", authHeader);
AuthenticationApi authApi = new AuthenticationApi();
LoginInformation loginInfo = authApi.Login();

在authApi.Login((之后,它终止线程并在输出窗口中显示以下内容。

线程0x1e68已退出,代码为 0 (0x0(。

会不会是文档签名方面的问题?或者我如何检查问题到底是什么?

谢谢

TLS 1.0 于 5 月 29 日在演示中被 DocuSign 禁用。 请参阅 https://support.docusign.com/articles/000044869 我的应用程序也停止登录。

我迁移到了最新版本(2.1.9(的DocuSign.esign.dll并将应用程序的目标框架从4.5.2升级到4.6。 我不确定是否需要两者,但它现在正在工作。 祝你好运!

最新更新