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.
是否有可能我点击了一个页面,作为响应,我得到了该页面正在使用 cookie 的信息。
您没有指定您正在使用哪些工具,但 cookie 是使用 HTTP 标头设置的,因此查看标头,您将看到所有 cookie 信息。
使用 curl,--dump-headers 可能会很有趣。
我从你的“httpcookie”标签中假设 c#。
使用 HttpWebRequest 并确保在发出请求之前分配其 CookieContainer 属性。请求完成后,检查 response.Cookies。