使用Python登录Google帐户?

时间:2016-09-16 21:42:17

标签: python python-3.x

我想使用Python登录我的Google帐户,但是当我打印html结果时,它不会显示我的用户名。这就是我知道它没有登录的方式。

如何使用Python登录Google?到目前为止,我已经看到了两个流行的模块,这个urllib.request或Requests,但没有一个帮助我登录巨人谷歌。

代码:

import requests

# Fill in your details here to be posted to the login form.
payload = {
'Email': 'accountemail@gmail.com',
'Passwd': 'accountemailpassword'
}

# Use 'with' to ensure the session context is closed after use.
with requests.Session() as s:
p = s.post('https://accounts.google.com/signin/challenge/sl/password', data=payload)
# print the html returned or something more intelligent to see if it's a successful login page.
print(p.text)

登录表单信息:

<input id="Email" name="Email" placeholder="Enter your email" type="email" value="" spellcheck="false" autofocus="">

<input id="Passwd" name="Passwd" type="password" placeholder="Password" class="">

<input id="signIn" name="signIn" class="rc-button rc-button-submit" type="submit" value="Sign in">

当我登录控制台时会给我4个请求链接,所以我不确定我是否使用了正确的URL。

Request URL:https://accounts.google.com/signin/challenge/sl/password
Request Method:POST
Status Code:302 

Request URL:https://accounts.google.com/CheckCookie?hl=en&checkedDomains=youtube&checkConnection=youtube%3A503%3A1&pstMsg=1&chtml=LoginDoneHtml&service=youtube&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Fhl%3Den%26feature%3Dsign_in_button%26app%3Ddesktop%26action_handle_signin%3Dtrue%26next%3D%252F&gidl=CAASAggA
Request Method:GET
Status Code:302 

Request URL:https://accounts.google.com/CheckCookie?hl=en&checkedDomains=youtube&checkConnection=youtube%3A503%3A1&pstMsg=1&chtml=LoginDoneHtml&service=youtube&continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Fhl%3Den%26feature%3Dsign_in_button%26app%3Ddesktop%26action_handle_signin%3Dtrue%26next%3D%252F&gidl=CAASAggA
Request Method:GET
Status Code:302 

request URL:https://www.youtube.com/signin?hl=en&feature=sign_in_button&app=desktop&action_handle_signin=true&next=%2F&auth=xAMUT-baNWvXgWyGYfiQEoYLmGv4RL0ZTB-KgGa8uacdJeruODeKVoxZWwyfd-NezfxB6g.
Request Method:GET
Status Code:303 

我目前正在使用Python 3.4.2&amp;不打算使用谷歌的API。

2 个答案:

答案 0 :(得分:1)

这将让您登录:

from bs4 import BeautifulSoup
import requests


form_data={'Email': 'you@gmail.com', 'Passwd': 'your_password'}
post = "https://accounts.google.com/signin/challenge/sl/password"

with requests.Session() as s:
    soup = BeautifulSoup(s.get("https://mail.google.com").text)
    for inp in soup.select("#gaia_loginform input[name]"):
        if inp["name"] not in form_data:
            form_data[inp["name"]] = inp["value"]
    s.post(post, form_data)
    html = s.get("https://mail.google.com/mail/u/0/#inbox").content

如果您在浏览器中保存并打开html,您将看到Loading you@gmail.com…,您需要使用Javascript来实际加载页面。您可以通过输入错误密码进一步验证,如果您这样做,您将再次看到登录页面的html。

您可以在浏览器中看到比您提供的内容更多,这些值包含在gaia_loginform中。

<form novalidate method="post" action="https://accounts.google.com/signin/challenge/sl/password" id="gaia_loginform">
  <input name="Page" type="hidden" value="RememberedSignIn">
  <input type="hidden" name="GALX" value="5r_aVZgnIGo">
  <input type="hidden" name="gxf" value="AFoagUUk33ARYpIRJqwrADAIgtChEXMHUA:33244249">
  <input type="hidden" id="_utf8" name="_utf8" value="&#9731;"/>
  <input type="hidden" name="bgresponse" id="bgresponse" value="js_disabled">
  <input type="hidden" id="pstMsg" name="pstMsg" value="0">
  <input type="hidden" id="dnConn" name="dnConn" value="">
  <input type="hidden" id="checkConnection" name="checkConnection" value="">
  <input type="hidden" id="checkedDomains" name="checkedDomains"
         value="youtube">

我显然不会分享我的电子邮件或密码,但您可以将我的电子邮件存储在下面的变量 my_mail 中,您可以看到我们在测试时它是否存在:

In [3]: from bs4 import BeautifulSoup

In [4]: import requests

In [5]: post = "https://accounts.google.com/signin/challenge/sl/password"

In [6]: with requests.Session() as s:
   ...:         soup = BeautifulSoup(s.get("https://accounts.google.com/ServiceLogin?elo=1").text, "html.parser")
   ...:         for inp in soup.select("#gaia_loginform input[name]"):
   ...:             if inp["name"] not in form_data:
   ...:                     form_data[inp["name"]] = inp["value"]
   ...:         s.post(post, form_data)
   ...:         

In [7]: my_mail in  s.get("https://mail.google.com/mail/u/0/#inbox").text
Out[7]: True

答案 1 :(得分:0)

除了使用oAuth或他们的API之外,谷歌还有像验证码这样的东西,以防止机器人暴力破解和猜测密码。

你可以尝试欺骗用户代理,但我仍然相信这是静脉。