Python请求登录身份验证错误

时间:2017-06-08 06:29:46

标签: python python-2.7 python-requests

我尝试使用 python 2.7

中的请求库登录[this](https://www.sistemas.pucminas.br/sgaaluno3/SilverStream/Pages/pgAln_LoginSSL.html“登录表单”)网站

发布数据(使用TamperData firefox插件捕获)

AgEvtSrc=S55_
AgStateCode=2
menu_direto=
S33_=<user>
S35_=<PASSWORD>
S39_=10
S59_=
q=

代码段

URL = "https://www.sistemas.pucminas.br/sgaaluno3/SilverStream/Pages/pgAln_LoginSSL.html"
s = requets.session()
data = {
            'AgEvtSrc': 'S55_',
            'AgStateCode': '1',
            'menu_direto': '',
            'S33_': username,
            'S35_': password,
            'S39_': '10',
            'S59_': '',
            'q': ''
        }

url= s.post(URL, data).url
print url

此代码返回相同的网址。有没有参数丢失?

0 个答案:

没有答案