Reputation: 31
I'm trying to get Cookie from HTTP get request with HttpWebReqquest object in c# but I don't find it. if i execute the next http get reuqest in the browser:
you can see clearly that there are 3 Set-Cookies:
but when I execute it with HttpWebRequest:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.AutomaticDecompression = DecompressionMethods.GZip;
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
using (Stream stream = response.GetResponseStream())
using (StreamReader reader = new StreamReader(stream))
{
res = reader.ReadToEnd();
}
I can see in the headers only 2 cookies and the third one is missing:
so how can I get this cookie from?
thanks.
Upvotes: 0
Views: 746