HTMLUnit 拒绝 cookie

发布于 2024-10-19 07:12:08 字数 611 浏览 0 评论 0原文

我正在尝试使用 HTMLUnit 库连接到一些网站。问题是我的 HTMLUnit 客户端不接受来自该站点的 cookie,并显示以下消息:

警告:Cookie 被拒绝:“[版本: 0][名称:remixchk][值:5][域: .vkontakte.ru][路径:/][到期时间:周二 2 月 21 日 08:53:46 MSK 2012]”。非法 域属性“vkontakte.ru”。 来源域名:“login.vk.com”

这是因为登录表单提交到的地址与站点地址不同。

我需要更改客户端中的 cookie 策略。我知道,我应该在 CookieManager 类中重写 getCookies 方法。我在 CookieManager 的子类中完成了此操作,然后以这种方式更改了客户端的 CookieManager:

webClient.setCookieManager(new mySubclassedCookieManager());

但这没有任何改变。此外,当拒绝 cookie 时, getCookies 方法永远不会运行。

我哪里出错了?我如何强制 HTMLUnit 接受该 cookie?

I am trying to connect to some website using HTMLUnit library. A problem is that my HTMLUnit client do not accepts a cookie from that site with the following message:

WARNING: Cookie rejected: "[version:
0][name: remixchk][value: 5][domain:
.vkontakte.ru][path: /][expiry: Tue
Feb 21 08:53:46 MSK 2012]". Illegal
domain attribute "vkontakte.ru".
Domain of origin: "login.vk.com"

This is because the login form is submitted to the address different from site address.

I need to change a cookie policy in my client. I know, that I should rewrite a getCookies method in CookieManager class. I have done this in a subclass of CookieManager and then changed the CookieManager of my client in this way:

webClient.setCookieManager(new mySubclassedCookieManager());

But this changes nothing. Moreover, when rejecting the cookie the getCookies method never runs.

Where I went wrong? How can I force HTMLUnit to accept that cookie?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

指尖上的星空 2024-10-26 07:12:08

您不应该更改客户端:您应该更改应用程序的设计。 HTMLUnit 在这种情况下执行任何真实浏览器都会执行的操作:拒绝 cookie。出于安全(和隐私)原因,网站不得为其他域设置 cookie。

You should not change the client : you should change the design of your app. HTMLUnit does what any real browser would do in this case : reject the cookie. A web site may not set a cookie for another domain, for security (and privacy) reasons.

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