我'm working on continuous integration in jenkins. I'使用 Headers 反向代理(https://wiki.jenkins-ci.org/display/JENKINS/Reverse+Proxy+Auth+Plugin)连接到jenkins . 我使用反向代理或LDAP,我将用户存储在jenkins中,我可以连接到jenkins并使用python脚本创建新作业 . 我使用了这个脚本:import jenkins server = jenkins.Jenkins('jenkinsServer',username = 'myuser',password = 'mypassword')server.create_job('empty',jenkins.EMPTY_CONFIG_XML)它工作得很好,但现在我的用户存储在LDAP服务器中,我是使用 Headers 反向代理 . Python-jenkins文档建议使用kerberos http://python-jenkins.readthedocs.io/en/latest/examples.html#example-2-logging-into-jenkins-using-kerberos但是这个库包含Cpython源,它不是't easy to install it on Windows. I tried to do it but I coouldn't . 有没有使用kerberos的另一种方式?求你帮忙 .