C#:如何从Google文档下载文件?

时间:2015-02-19 11:57:24

标签: c# .net download

Windows 7,.Net 4.5.1。我的电脑在域中。我尝试从GoogleDocs下载dll文件:

WebClient client = new WebClient();
client.Proxy = WebProxy.GetDefaultProxy();
client.Credentials = new NetworkCredential("userName", "password");
client.DownloadFile("https://drive.google.com/file/d/0B7H_2Cq9tBXdWkU0andsR1dWM0U/view?usp=sharing",
  fileName);

但是我收到了一条消息:

  

远程服务器返回错误:(407)代理验证   必需的。

我该如何解决?

1 个答案:

答案 0 :(得分:0)