如何在允许下载之前从需要引用的http服务器下载文件?

时间:2011-11-18 20:57:01

标签: c# .net vb.net

我通常使用以下代码下载文件:

My.Computer.Network.DownloadFile("url of the file","filepath to save the file")

但是最近我遇到了一个只允许文件下载的站点,如果你从它的站点点击它而不是直接从vb.net代码下载。

我的问题是:如何在允许下载之前从需要引荐的http服务器下载文件?

1 个答案:

答案 0 :(得分:5)

尝试手动添加Referer标头:

WebClient wc = new WebClient();
wc.Headers.Add("Referer","http://whatever.com");
wc.DownloadFile("url of the file","filepath to save the file");