HTTP Web 请求不维护会话

编程入门 行业动态 更新时间:2024-10-11 23:24:15
本文介绍了HTTP Web 请求不维护会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个程序,我想在其中废弃一些有用的学习材料以供个人使用.该站点还维护一个会话密钥和其他一些密钥.如果我尝试转到嵌套页面,它将结束会话.

I have a program where I want to scrap some useful study material for personal use. This site maintain a session key and some other key also. If I tried to go to a nested page then it will end the session.

我无法使用网络请求类维护会话密钥.

I'm unable to maintain session key using a web request class.

如何使用 Web 请求类维护会话?

How can I maintain a session using a web request class?

请帮忙.

推荐答案

您需要在您的请求中维护 CookiesCollection.

You need to maintain the CookiesCollection across your requests.

var request = (HttpWebRequest)HttpWebRequest.Create("www.mysite/"); var cookies = new CookieContainer(); //Pass the collection along with each request to maintain session request.CookieContainer = cookies;

当您收到响应时,您的容器将自动包含与之关联的一组 cookie.然后,您可以在后续请求中重复使用该容器.

When you get the response back, your container will automatically contain the set of cookies associated with it. You can then reuse that container with subsequent requests.

更多推荐

HTTP Web 请求不维护会话

本文发布于:2023-11-28 14:20:29,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1642764.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:HTTP   Web

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!