Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过 WebBrowser 登录 cookie 并最终将 cookie 发送到HttpWebRequest. 他们webBrowser1.Document.Cookie得到的比HttpOnly那个饼干少。方式WebBrowser HttpOnly 一个cookie?
HttpWebRequest
webBrowser1.Document.Cookie
HttpOnly
开发语言为 C#
如果您要问如何在浏览器上访问 HttpOnly cookie,我认为您不能将其作为服务器的更多机制,而 HttpOnly 的全部意义在于它可以阻止客户端篡改 cookie。
所以你可以在你的请求中设置它们,但我认为你不能通过浏览器访问它们,除非你可以访问可能包含它的底层响应。