本文介绍了DocuSign-RestApi v2-使用C#下载文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我正在尝试通过RestAPI v2使用以下代码检索签名的文档。I'm trying to retrieve a signed document via RestAPI v2 with below code.url = baseURL + "/accounts/" + "3602fbe5-e11c-44de-9e04-a9fc9aa2aad6" + "/envelopes/" + envId + "/documents/combined";HttpWebRequest request4 = (HttpWebRequest)WebRequest.Create(url);request4.Method = "GET";request4.Headers.Add("X-DocuSign-Authentication", authHeader);request4.Accept = "application/pdf";request4.ContentType = "application/json";request4.ContentLength = 0;HttpWebResponse webResponse4 = (HttpWebResponse)request4.GetResponse();StreamReader objSR = new StreamReader(webResponse4.GetResponseStream());StreamWriter objSW = new StreamWriter(@"C:\Users\reddy\Desktop\Docusign\test_" + envId + ".pdf");objSW.Write(objSR.ReadToEnd());objSW.Close();objSR.Close();使用上述代码,我可以保存PDF文件,但有些地方不对。有人可以帮我解决我的错误代码。With above code, I'm able to save a PDF file but something is not right. Can someone help me fix my buggy code.下载的文档:Downloaded Document:原始文档:Original document:推荐答案 选项1 :您可以简单地使用 System.Net.WebClient 类Option 1: You can simply use the System.Net.WebClient classstring url = baseURL + "/accounts/" + accountId + "/envelopes/" + envId + "/documents/combined";string path = @"C:\Users\reddy\Desktop\Docusign\test_" + envId + ".pdf";using (var wc = new System.Net.WebClient()){ wc.Headers.Add("X-DocuSign-Authentication", authHeader); wc.DownloadFile(url, path);} 选项2 :将输入流复制到输出FileStreamOption 2 : Copy the input stream to the output FileStreamvar request = (HttpWebRequest)WebRequest.Create(url);request.Method = "GET";request.Headers.Add("X-DocuSign-Authentication", authHeader);using (var response = (HttpWebResponse)request.GetResponse()){ using (var stream = File.Create(path)) response.GetResponseStream().CopyTo(stream);} 选项3 :使用DocuSign C#SDKOption 3 : Using the DocuSign C# SDK查看完整代码此处var envApi = new EnvelopesApi();var docStream = envApi.GetDocument(accountId, envelopeId, "combined");using (var stream = File.Create(filePath)) docStream.CopyTo(stream);也请参见 answer 这篇关于DocuSign-RestApi v2-使用C#下载文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-01 06:24