我正在尝试使用Jenkins Python API通过以下命令为jenkins作业重新配置xml文件:
j = jenkins.Jenkins('https:JENKINS_URL', 'username', 'token')
j.job_reconfigure('Job_Name', 'Path_To_Local_config.xml')
我收到错误回复
File "/Library/Python/2.7/site-packages/requests/models.py", line 844, in raise_for_status
raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 500 Server Error: Server Error for url:https://URL_TO_JENKINS_config.xml
我认为这可能是因为https,但我不知道如何让它发挥作用。