gpt4 book ai didi

python JIRA 与代理的连接

转载 作者:行者123 更新时间:2023-11-28 18:37:42 27 4
gpt4 key购买 nike

我正在尝试使用代理通过 python-jira 进行连接:

server = {"server": "https://ip:port/jira",
'proxies': {"http": "http://ip:port", "https": "http://ip:port"},
'verify': False,
'stream': True}

cls.jira_object = JIRA(options=server,
basic_auth=(user, password),
validate=True)

回溯错误:

tests\jira_test\ticket_test.py:52: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
build\bdist.win-amd64\egg\jira\client.py:217: in __init__
???
build\bdist.win-amd64\egg\jira\client.py:1841: in session
???
build\bdist.win-amd64\egg\jira\utils.py:78: in json_loads
???
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

r = None, verb = '???', kwargs = {}, request = None, headers = None

> ???
E JIRAError: JiraError HTTP None

知道如何让 jira-python 与代理连接吗?

最佳答案

您可以向 JIRA 的构造函数提供代理:

cls.jira_object = JIRA(options=server,
basic_auth=(user, password),
validate=True,
proxies={"http": "http://ip:port", "https": "http://ip:port"})

记得从你的选项字典中删除“代理”

关于构造函数的更多信息: https://github.com/pycontribs/jira/blob/develop/jira/client.py

关于python JIRA 与代理的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30872740/

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