不发送现有 cookie,但仍接受设置的 cookie

发布于 2024-11-29 11:36:38 字数 566 浏览 2 评论 0原文

我正在查看 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
0x00080000

Does 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼中杀气 2024-12-06 11:36:38

我发现的一个糟糕的解决方案是使用以下命令迭代缓存的条目
FindFirstUrlCacheEntryFindNextUrlCacheEntry 并在每次发送请求之前使用 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 with DeleteUrlCacheEntry every time before the request is sent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文