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

时间:2016-10-24 15:01:36

标签: python teamcity

我在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)

这两个都返回&#34; HTTP错误401:未经授权&#34;。但是,如果我要打印&#39; url&#39;并将此输出复制到浏览器中,链接完美运行。但是当通过python使用时,我得到了上述错误。

我在另一个Perl脚本中使用了非常相似的东西,这也非常有效。

*已解决*

1 个答案:

答案 0 :(得分:3)

解决了这个问题。

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)

网址在哪里:

http://<teamcityServer>/repository/download/<build Label>/<BuildID>:id/Filename.zip
相关问题