urllib2基本身份验证

时间:2014-04-25 14:22:38

标签: python authentication urllib2

我正在尝试获取受密码保护的网址

theurl = 'http://92.xx.xxx.x:80xx/connectioncounts'
username = ''
password = ''

password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm()
password_mgr.add_password(None, theurl, username, password)
handler = urllib2.HTTPBasicAuthHandler(password_mgr)
opener = urllib2.build_opener(handler)
opener.open(theurl)

但总是得到 urllib2.HTTPError:HTTP错误401:未经授权

我正在关注https://docs.python.org/2.7/howto/urllib2.html#id6

问题是什么?

1 个答案:

答案 0 :(得分:0)

我已经解决了:)我必须使用HTTPDigestAuthHandler而不是HTTPBasicAuthHandler。