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

本文关键字:共享文件 文件夹 下载 文件 共享 何使用 onedrive | 更新日期: 2023-09-27 18:16:10

我想用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");

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

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