HTMLUnit 拒绝 cookie
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该更改客户端:您应该更改应用程序的设计。 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.