HTTP 错误 401:未授权使用 urllib.request.urlopen

HTTP Error 401: Unauthorized using urllib.request.urlopen

我在 python 中使用 urllib.request 尝试从 Teamcity 下载一些构建信息。此请求过去无需用户名和密码即可工作,但最近的安全更改意味着我必须使用用户名和密码。所以我改变了尝试以下两种解决方案中的每一种:

尝试 1)

url = 'http://<domain>/httpAuth/app/rest/buildTypes/<buildlabel>/builds/running:false?count=1&start=0'

# create a password manager
password_mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()

# Add the username and password.
top_level_url = "http://<domain>/httpAuth/app/rest/buildTypes/id:<buildlabel>/builds/running:false?count=1&start=0"
password_mgr.add_password(None, top_level_url, username, password)

handler = urllib.request.HTTPBasicAuthHandler(password_mgr)

# create "opener" (OpenerDirector instance)
opener = urllib.request.build_opener(handler)

# use the opener to fetch a URL
opener.open(url)

尝试 2

url = 'http://<username>:<password>@<domain>/httpAuth/app/rest/buildTypes/id:buildlabel/builds/running:false?count=1&start=0'
rest_api = urllib.request.urlopen(url)

这两个 return "HTTP Error 401: Unauthorized"。但是,如果我要打印 'url' 并将此输出复制到浏览器中,则 link 可以完美运行。但是当通过 python 使用时,我得到了上面的错误。

我在另一个 Perl 脚本中使用了非常相似的东西,它也能完美运行。

* 已在下方解决 *

使用解决了这个问题。

credentials(url, username, password)
rest_api = urllib2.urlopen(url)
latest_build_info = rest_api.read()
latest_build_info = latest_build_info.decode("UTF-8")
# Then parse this xml for the information I want. 

def credentials(self, url, username, password):
    p = urllib2.HTTPPasswordMgrWithDefaultRealm()
    p.add_password(None, url, username, password)
    handler = urllib2.HTTPBasicAuthHandler(p)
    opener = urllib2.build_opener(handler)
    urllib2.install_opener(opener)

附带说明一下,我想下载一个文件..

credentials(url, username, password)
urllib2.urlretrieve(url, downloaded_file)

其中 Url 是:

http://<teamcityServer>/repository/download/<build Label>/<BuildID>:id/Filename.zip