使用 Mechanize for Ruby 屏幕抓取 Akamai 的控制面板 - Cookie 问题

发布于 2024-12-03 03:44:07 字数 413 浏览 0 评论 0原文

我试图从 Akamai 的控制面板中截取一些数据,但在通过 mechanize for Ruby 登录页面时遇到问题。

require 'rubygems'
require 'mechanize'

agent = Mechanize.new

url = 'http://control.akamai.com'
page = agent.get( url )

puts page.content

检查页面后,我发现显示:

"Cookie support has been disabled in your browser. Please enable cookies before continuing."

该页面认为我已禁用 cookie,这会阻止我登录。有什么想法吗?

I am attempting to screen scrape some data from Akamai's control panel, but I am having trouble while logging in to the page via mechanize for Ruby.

require 'rubygems'
require 'mechanize'

agent = Mechanize.new

url = 'http://control.akamai.com'
page = agent.get( url )

puts page.content

Upon examining the page, I find displayed:

"Cookie support has been disabled in your browser. Please enable cookies before continuing."

The fact that the page thinks I have cookies disabled prevents me from logging in. Any thoughts?

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

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

发布评论

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

评论(1

泪痕残 2024-12-10 03:44:07

您可以指定其他用户代理:

agent.user_agent_alias = 'Mac Safari'

或者/并手动创建 cookie:

cookie = Mechanize::Cookie.new(key, value)
cookie.domain = '.akamai.com'
cookie.path = '/'
agent.cookie_jar.add(cookie)

有关 Ruby Mechanize cookie 的更多信息,请阅读此页面:

http://mechanize.rubyforge.org/Mechanize/Cookie.html
http://mechanize.rubyforge.org/Mechanize/CookieJar.html

You can specify other user agent:

agent.user_agent_alias = 'Mac Safari'

Or/And create a cookie manually:

cookie = Mechanize::Cookie.new(key, value)
cookie.domain = '.akamai.com'
cookie.path = '/'
agent.cookie_jar.add(cookie)

For more info about Ruby Mechanize cookies, read this pages:

http://mechanize.rubyforge.org/Mechanize/Cookie.html
http://mechanize.rubyforge.org/Mechanize/CookieJar.html

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