我在这里指的是C#示例:http://iodocs.docusign.com/APIWalkthrough/getEnvelopeDocuments
此API实际上是根据服务器上的信封ID下载文档。
但是,对于我的用例,我想知道是否有办法通过API通过API检索文档,而不是将其下载到服务器。
答案 0 :(得分:0)
虽然无法通过URL直接链接到DocuSign文档,但是当用户点击链接时,可以在浏览器中显示文档(无需将其下载到服务器)你的网站。这样做只需要链接的 onClick ,您的代码通过API从DocuSign请求文档(如示例所示),然后立即写入响应流(字节数组) )到浏览器(而不是写入文件)。
您应该可以通过替换" // read the response and store into a local file:
"来实现这一目标。部分(在您链接的代码示例中)与以下内容类似:
// Write the response stream to the browser (render PDF in browser).
HttpWebResponse webResponse = (HttpWebResponse)request.GetResponse();
byte[] b = null;
using (Stream stream = webResponse.GetResponseStream())
using (MemoryStream ms = new MemoryStream())
{
int count = 0;
do
{
byte[] buf = new byte[1024];
count = stream.Read(buf, 0, 1024);
ms.Write(buf, 0, count);
} while (stream.CanRead && count > 0);
b = ms.ToArray();
}
Response.BufferOutput = true;
Response.ClearHeaders();
Response.AddHeader("content-disposition", "inline;filename=DSfile.pdf");
Response.ContentType = "application/pdf";
Response.BinaryWrite(b);
Response.Flush();
Response.End();