如何使用c#从onedrive的共享文件夹下载文件?

时间:2015-10-05 15:40:24

标签: c# onedrive

我想使用c#

从OneDrive中的共享文件夹下载文件
WebClient clientDownload = new WebClient();

StringBuilder requestUri= new StringBuilder();

requestUriDownload2.AppendFormat("https://onedrive.live.com/download?resid={0}",FileId);

clientDownload.DownloadFile(requestUriDownload2.ToString(), @"C:\Users\Junior\Desktop\exammple.zip");

1 个答案:

答案 0 :(得分:0)

我在代码中没有看到任何身份验证或授权逻辑。你有吗?