在python上访问带有基本身份验证的网页

时间:2014-04-07 10:25:44

标签: python mechanize basic-authentication http-basic-authentication

我尝试使用机械化连接网页,但我收到了http 401错误。

这是我的代码;

import base64, mechanize

url = "http://www.dogus.edu.tr/dusor/FrmMain.aspx"
user = "user"
pwd = "pwd"

br = mechanize.Browser()
br.set_handle_robots(False)
br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1)
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]

br.add_password(url, user, pwd)
#br.addheaders.append(('Authorization', 'Basic %s' % base64.encodestring('%s:%s' % (user, pwd))))
print br.open(url).read()

add_passwordaddheaders都无效。是因为我从未指定过领域吗?我怎样才能获得该网页使用的领域?我使用的用户名和密码是正确的,因为我可以使用带有这些凭据的chrome登录。

1 个答案:

答案 0 :(得分:3)

您用作示例页面的网站需要NTLM身份验证。您可以通过查看返回的HEADER字段来查看此信息。例如curl -I http://www.dogus.edu.tr/dusor/FrmMain.aspx返回:

HTTP/1.1 401 Unauthorized
Content-Length: 1293
Content-Type: text/html
Server: Microsoft-IIS/7.0
WWW-Authenticate: Negotiate
WWW-Authenticate: NTLM
X-Powered-By: ASP.NET
Date: Mon, 07 Apr 2014 21:24:09 GMT

WWW-Authenticate: NTLM表示使用了哪种身份验证方法。我认为这个问题的答案Use python mechanize to log into pages with NTLM authentication会对你有帮助。