不发送现有 cookie,但仍接受设置的 cookie
我正在查看 cookie 的 Wininet API,我似乎找不到可以避免发送 cookie 但仍接受它们的标志。我试图不在 HTTP 请求中发送当前计算机中的 cookie,但仍然让服务器响应中设置的 cookie 被设置(并覆盖任何现有的 cookie)。
最接近的标志是 INTERNET_FLAG_NO_COOKIES
,但这也不会将 cookie 添加到 cookie 数据库中:
INTERNET_FLAG_NO_COOKIES
<块引用>
0x00080000不自动添加cookie 请求头,并且不会自动添加返回的cookie 到 cookie 数据库。该标志可由 HttpOpenRequest 和 InternetOpenUrl(用于 HTTP 请求)。
I am looking at the Wininet APIs for cookies, and I cannot seem to find a flag for that would avoid sending cookies, but still accept them. I am trying to not send in the HTTP request the cookies currently in the machine, but still let the set cookie from the server response be set (and override any existing cookies).
The closest flag is INTERNET_FLAG_NO_COOKIES
, but that also does not add cookies to the cookie database:
INTERNET_FLAG_NO_COOKIES
0x00080000Does not automatically add cookie
headers to requests, and does not automatically add returned cookies
to the cookie database. This flag can be used by HttpOpenRequest and
InternetOpenUrl (for HTTP requests).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现的一个糟糕的解决方案是使用以下命令迭代缓存的条目
FindFirstUrlCacheEntry
、FindNextUrlCacheEntry
并在每次发送请求之前使用DeleteUrlCacheEntry
删除与 URL 关联的条目。One bad solution I found is to iterate through the cached entries with
FindFirstUrlCacheEntry
,FindNextUrlCacheEntry
and delete the entries associated with the URL withDeleteUrlCacheEntry
every time before the request is sent.