perl – 如何手动将cookie添加到WWW :: Mechanize已经存在的cookiejar中

perl – 如何手动将cookie添加到WWW :: Mechanize已经存在的cookiejar中,第1张

概述我有一个perl脚本,在获取页面后,我需要在已经存在cookie的已经存在的cookiejar中添加一个cookie.我该怎么做呢?我希望有一个 python机械化样式.set_cookie()函数 一个 WWW::Mechanize对象是 LWP::UserAgent,它有一个cookie_jar属性,通常包含一个 HTTP::Cookies对象,它有一个set_cookie方法. 所以你要做的 我有一个perl脚本,在获取页面后,我需要在已经存在cookie的已经存在的cookiejar中添加一个cookie.我该怎么做呢?我希望有一个 python机械化样式.set_cookie()函数解决方法 一个 WWW::Mechanize对象是 LWP::UserAgent,它有一个cookie_jar属性,通常包含一个 HTTP::Cookies对象,它有一个set_cookie方法.

所以你要做的事情如下:

$mech->cookie_jar->set_cookie( $version,$key,$val,$path,$domain,$port,$path_spec,$secure,$maxage,$discard,\%rest )

The set_cookie() method updates the state of the $cookie_jar. The $key,$port and $path arguments are strings. The $path_spec,$discard arguments are boolean values. The $maxage value is a number indicating number of seconds that this cookie will live. A value <= 0 will delete this cookie. %rest defines varIoUs other attributes like “Comment” and “CommentURL”.

总结

以上是内存溢出为你收集整理的perl – 如何手动将cookie添加到WWW :: Mechanize已经存在的cookiejar中全部内容,希望文章能够帮你解决perl – 如何手动将cookie添加到WWW :: Mechanize已经存在的cookiejar中所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1263042.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存