forked from taf2/curb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgmail.rb
48 lines (37 loc) · 1.5 KB
/
gmail.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This logs into gmail, up to the point where it hits the
# security redirect implemented as a refresh. It will probably
# stop working altogether when they next change gmail but
# it's still an example of posting with curb...
$:.unshift(File.join(File.dirname(__FILE__), '..', 'ext'))
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'curb'
$EMAIL = '<YOUR GMAIL LOGIN>'
$PASSWD = '<YOUR GMAIL PASSWORD>'
url = 'https://www.google.com/accounts/ServiceLoginAuth'
fields = [
Curl::PostField.content('ltmpl','m_blanco'),
Curl::PostField.content('ltmplcache', '2'),
Curl::PostField.content('continue',
'http://mail.google.com/mail/?ui.html&zy=l'),
Curl::PostField.content('service', 'mail'),
Curl::PostField.content('rm', 'false'),
Curl::PostField.content('rmShown', '1'),
Curl::PostField.content('PersistentCookie', ''),
Curl::PostField.content('Email', $EMAIL),
Curl::PostField.content('Passwd', $PASSWD)
]
c = Curl::Easy.http_post(url, *fields) do |curl|
# Gotta put yourself out there...
curl.headers["User-Agent"] = "Curl/Ruby"
# Let's see what happens under the hood
curl.verbose = true
# Google will redirect us a bit
curl.follow_location = true
# Google will make sure we retain cookies
curl.enable_cookies = true
end
puts "FINISHED: HTTP #{c.response_code}"
puts c.body_str
# As an alternative to passing the PostFields, we could have supplied
# individual pre-encoded option strings, or a single string with the
# entire form data.