からファイルをダウンロードし、私はあなたがSharePointサイトからファイルをダウンロードするためにWebRequest
を使用してこのタスクを達成することができ、このコードを持っていると、エラーコード500は、私は、SharePointからファイルをダウンロードしようとしているSharePointの
static void DownloadFile(){
string serverFilePath = "Here goes my URL, that open the file from any tab";
var password = new SecureString();
foreach (char c in Configuration.password) {
password.AppendChar(c);
}
// theese are the credentials and work fine because I tested in another method
var o365credentials = new SharePointOnlineCredentials(Configuration.userName, password);
var url = string.Format("{0}/{1}", Configuration.siteUrl, serverFilePath);
// My destination folder
string destPath = @"C:\publisher";
var request = System.Net.HttpWebRequest.Create(url);
request.Credentials = o365credentials;
using (var sReader = new StreamReader(request.GetResponse().GetResponseStream())) {
using (var sWriter = new StreamWriter(destPath)) {
sWriter.Write(sReader.ReadToEnd());
}
}
}
あなたは疑問を持っている、またはあなたが見ているのですあなたのコードを書く人は誰ですか? – lgaud
もちろん、単なる質問ですが、ファイルやパラメータをダウンロードするためにどのメソッドを呼び出すかを知ることが必要です。 –