本文介绍了如何从网站获取所有cookie而不是少数。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我提出了在网站上获取所有Cookie的申请,但我注意到该应用只输出了一些。为什么会发生这种情况并且可以解决?



我尝试了什么:



I made a application for getting all cookies on a website but I noticed the app only outputs a few. Why is this happening and is this fixable?

What I have tried:

try
{

string url = textBox1.Text;
               
HttpWebRequest myCall = (HttpWebRequest)WebRequest.Create(url); 

myCall.CookieContainer = new CookieContainer();

response = (HttpWebResponse)myCall.GetResponse();

myCall.AllowAutoRedirect = true;

foreach (Cookie cookie in response.Cookies)
{                   
    listBox1.Items.Add(cookie.Name);
     listBox1.Items.Add(cookie.Value);
}

myCall.Abort();

}
catch(Exception ex)
{
 MessageBox.Show(ex.Message);
}

推荐答案



这篇关于如何从网站获取所有cookie而不是少数。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 21:33