尝试使用新的API来下载文件。 但是,我得到一个错误(NOTFOUND)
随着旧的API我精下载:
wcGetFile.DownloadStringAsync(new Uri("https://www.box.net/api/1.0/download/" + auth_token + "/2111821875"));
随着新的API,这是我的代码:
wcGetFile.Headers[HttpRequestHeader.Authorization] = "BoxAuth api_key=" + api_key + "&auth_token=" + auth_token;
wcGetFile.DownloadStringAsync(new Uri("https://api.box.com/2.0/files/2111821875/data"));
该文件不存在,因为如果我从通话结束时删除“数据”我知道,没有错误的文件信息。
wcGetFile.Headers[HttpRequestHeader.Authorization] = "BoxAuth api_key=" + api_key + "&auth_token=" + auth_token;
wcGetFile.DownloadStringAsync(new Uri("https://api.box.com/2.0/files/2111821875"));
根据该文件的信息和实际文件之间的唯一区别是URL的“数据”部分。 但是,这似乎并没有为我工作。