を使用してOffice365SharePointライブラリに存在するアイテムをダウンロードしようとしていますが、次のWebcClient.DownloadFile()
例外が発生します。
例外 :
The remote server returned an error: (403) Forbidden.
サンプルコード:
NetworkCredential credential = new NetworkCredential("username", "password", "aaa.onmicrosoft.com");
WebClient webClient = new WebClient();
webClient.Credentials = credential;
webClient.DownloadFile(@"https://aaa.sharepoint.com/testDoc/test.pdf", @"c:/test.pdf");