我是DocuSign Connect的新手,我正在尝试为事件编写监听器代码。目前, 我正在使用来自.net SDK连接侦听器示例的代码,但可能会注意到以下代码中的Request.InputStream始终为NULL,但是从连接日志中可以注意到POST已完成。
byte[] bytes = new byte[Request.InputStream.Length];
Request.InputStream.Read(bytes, 0, bytes.Length);
Request.InputStream.Position = 0;
if (!Directory.Exists(Server.MapPath("~") + "\\EnvelopeCerts"))
Directory.CreateDirectory(Server.MapPath("~") + "\\EnvelopeCerts");
if (!Directory.Exists(Server.MapPath("~") + "\\Documents"))
Directory.CreateDirectory(Server.MapPath("~") + "\\Documents");
问题是没有任何东西出来,或者是空的。我知道信息是通过POST传递的,所以我不确定我做错了什么。