gpt4 book ai didi

python - HTTP 错误 401 : Unauthorized using urllib. request.urlopen

转载 作者:太空宇宙 更新时间:2023-11-04 00:44:44 30 4
gpt4 key购买 nike

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

这两个都返回“HTTP 错误 401:未经授权”。但是,如果我要打印“url”并将此输出复制到浏览器中,则该链接可以正常工作。但是当通过 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)

网址在哪里:

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

关于python - HTTP 错误 401 : Unauthorized using urllib. request.urlopen,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40221579/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com