10

我想抓取一个私人谷歌小组的讨论列表。这是一个多页列表,我以后可能不得不再次这样做,所以脚本听起来像是要走的路。

由于这是一个私人组,我需要先登录我的谷歌帐户。不幸的是,我无法使用 wget 或 ruby​​ Net::HTTP 登录。令人惊讶的是,客户端登录界面无法访问 google 群组,因此所有代码示例都无用。

我的 ruby​​ 脚本嵌入在帖子的末尾。对身份验证查询的响应是 200-OK,但响应标头中没有 cookie,并且正文包含消息“您的浏览器的 cookie 功能已关闭。请打开它。”

我用 wget 得到了相同的输出。请参阅此消息末尾的 bash 脚本。

我不知道如何解决这个问题。我错过了什么吗?任何的想法?

提前致谢。

约翰

这是红宝石脚本:

# a ruby script
require 'net/https'

http = Net::HTTP.new('www.google.com', 443)
http.use_ssl = true
path = '/accounts/ServiceLoginAuth'


email='john@gmail.com'
password='topsecret'

# form inputs from the login page
data = "Email=#{email}&Passwd=#{password}&dsh=7379491738180116079&GALX=irvvmW0Z-zI"
headers =  { 'Content-Type' => 'application/x-www-form-urlencoded',
'user-agent' => "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.2 (KHTML, like Gecko) Chrome/6.0"}

# Post the request and print out the response to retrieve our authentication token
resp, data = http.post(path, data, headers)
puts resp
resp.each {|h, v| puts h+'='+v}

#warning: peer certificate won't be verified in this SSL session

这是 bash 脚本:

# A bash script for wget
CMD=""
CMD="$CMD --keep-session-cookies --save-cookies cookies.tmp"
CMD="$CMD --no-check-certificate"
CMD="$CMD --post-data='Email=john@gmail.com&Passwd=topsecret&dsh=-8408553335275857936&GALX=irvvmW0Z-zI'"
CMD="$CMD --user-agent='Mozilla'"
CMD="$CMD https://www.google.com/accounts/ServiceLoginAuth"
echo $CMD
wget $CMD
wget --load-cookies="cookies.tmp" http://groups.google.com/group/mygroup/topics?tsc=2
4

3 回答 3

6

您是否尝试过使用机械化处理红宝石?
机械化库用于与网站的自动化交互;您可以登录 google 并浏览您的私人 google 组以保存您需要的内容。

是一个使用 mechanize 进行 gmail 抓取的示例。

于 2010-04-02T09:28:01.703 回答
1

我之前通过使用 Firefox 手动登录,然后使用Chickenfoot自动浏览和抓取来做到这一点。

于 2010-04-04T12:45:33.373 回答
1

找到了这个 PHP 解决方案来抓取私人 Google 群组

于 2010-04-13T15:23:54.023 回答