我通常使用以下代码下载文件:
My.Computer.Network.DownloadFile("url of the file","filepath to save the file")
但是最近我遇到了一个只允许文件下载的站点,如果你从它的站点点击它而不是直接从vb.net代码下载。
我的问题是:如何在允许下载之前从需要引荐的http服务器下载文件?
答案 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");