带有用户名和密码的System.Net.WebClient

时间:2011-06-15 15:48:44

标签: c# cookies login webclient

我有一个WebClient对象并且正在使用DownloadFileAsync方法来获取文件,尽管我之前需要登录该网站,这似乎很难。我想登录https://ssl.rapidshare.com/(似乎使用表单身份验证)。我发现了以下可识别cookie的WebClient代码:

public class CookieAwareWebClient:WebClient {
    private CookieContainer m_container=new CookieContainer();
    protected override WebRequest GetWebRequest(Uri address) {
        WebRequest request=base.GetWebRequest(address);
        if(request is HttpWebRequest) {
            (request as HttpWebRequest).CookieContainer=m_container;
        }
        return request;
    }
}

但是,我担心我的代码似乎没有合作:

gWebClient=new CookieAwareWebClient();
if(gGroupEntry.GetStringProperty(CGroupEntry.EStringProperties.DownloadURL).Contains("rapidshare.com"))
    gWebClient.Credentials=new System.Net.NetworkCredential(CSaverLoader.gUsername, CSaverLoader.gPassword, "https://ssl.rapidshare.com/");
gWebClient.DownloadFileCompleted+=new AsyncCompletedEventHandler(gWebClient_DownloadFileCompleted);
gWebClient.DownloadProgressChanged+=new DownloadProgressChangedEventHandler(gWebClient_DownloadProgressChanged);
gWebClient.DownloadFileAsync(new Uri(gGroupEntry.GetStringProperty(CGroupEntry.EStringProperties.DownloadURL)), gDownloadDirectory+"/"+gGroupEntry.GetStringProperty(CGroupEntry.EStringProperties.FileName));

为什么会这样?

2 个答案:

答案 0 :(得分:1)

您是否可以使用System.Net命名空间中的HttpWebRequest Class?这是一个比轻量级WebClient更灵活的类,用于发出HTTP请求,并包含HttpWebRequest.CookieContainer Property之类的内容。

答案 1 :(得分:0)

如果网站使用基于cookie的身份验证而不是HTTP基本身份验证,则需要将Cookie放入CookieContainer,而不是设置凭据。