0

我正在尝试从登录表单中获取 cookie,将其保存在我的 cookie 容器 cookieJar 中,并在下一个请求中使用。cookie 已正确保存(至少,计数显示了适当的数量,但是在执行 webrequest3 时,我没有获取内容,将页面视为未登录。

PD:我阅读了相关的帖子,但专业没有完全实现(显然),其他人都在做和我一样的事情,所以我很茫然。

 CookieContainer cookieJar = new CookieContainer();
        //The First Req

        HttpWebRequest webRequest1 = (HttpWebRequest)WebRequest.Create("url1");
        webRequest1.Method = "GET";
        webRequest1.ContentType = "text/html";
        webRequest1.KeepAlive = true;
        webRequest1.UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36";
        webRequest1.Host = "url1";
        webRequest1.CookieContainer = cookieJar;
        webRequest1.ContentType = "text/html";
        HttpWebResponse webResponse;
        webResponse = (HttpWebResponse)webRequest1.GetResponse();
        Console.WriteLine(cookieJar.Count.ToString());
        StreamReader reader = new StreamReader(webResponse.GetResponseStream());

        // Read the content fully up to the end.
        string responsereq = reader.ReadToEnd();

        // Clean up the streams.
        reader.Close();
        webResponse.Close();
        Console.ReadKey();

        //Second Request
        HttpWebRequest webRequest3 = (HttpWebRequest)WebRequest.Create("url2");
        webRequest3.Method = "GET";
        webRequest3.KeepAlive = true;
        webRequest3.UserAgent="Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36";
        webRequest3.Host = "url2";
        webRequest3.CookieContainer = cookieJar;
        webRequest3.ContentType = "text/html";


        Console.WriteLine(cookieJar.Count.ToString() +"CookieJar");
        Console.ReadKey();
        webResponse = (HttpWebResponse)webRequest3.GetResponse();
        StreamReader reader3 = new StreamReader(webResponse.GetResponseStream());

        // Read the content fully up to the end.
        string responseFromServer = reader3.ReadToEnd();
        Console.WriteLine(responseFromServer);

      // Clean up the streams.
      webResponse.Close();

Console.ReadKey();

编辑:

我和提琴手一起知道,当从资源管理器登录时,在 webrequest1 之后自动进入一个页面,不保存任何 cookie,但似乎使用了一些服务器端检查,如果你在 webrequest3 之前没有进入那个页面,webrequest2 无法识别您的登录。因此,在 webrequest3 之前创建另一个 webrequest,就可以了。

4

1 回答 1

3

尝试以下。

  1. 首先从第一个请求的响应中获取 cookie。

    HttpWebResponse webResponse;
    webResponse = (HttpWebResponse)webRequest1.GetResponse();
    

    CookieContainer cookieJar=new CookieContainer();

       foreach (Cookie cook in webResponse .Cookies)
        {
            cookieJar.Add(cook);
        }
    
  2. 将其传递给后续请求。

    webRequest3.CookieContainer = cookieJar;

于 2013-10-15T06:11:23.910 回答