如何在c#中使用webclient下载SalesForceDesk附件

时间:2015-06-25 04:28:47

标签: c# salesforce

我想使用c#代码将我的案例中的附件下载到本地文件夹。我试过下面的代码。

string url= https://simpleaudio.desk.com/api/v2/cases/8/attachments/8897101/url

using (WebClient client = new WebClient())
{
  client.DownloadFile(url, @"F:\" + image.jpg);
}

但是它显示了Unauthorized Exception,如何使用webclient访问SalesForceDesk,我尝试了很多,请帮我解决这个问题。

我尝试传递访问权限

var collection = new NameValueCollection();
collection.Add("username", "********");
collection.Add("password", "********");

byte[] responseBytes = webClient.UploadValues("https://simpleaudio.desk.com/login/new", "POST", collection);

它也会引发未经授权的异常..

0 个答案:

没有答案