python中这个CURL命令的等价物是什么?

时间:2017-04-14 08:39:27

标签: python authentication kerberos

我正在尝试使用kerberos authentification连接到API。

CURL只是简单:

curl -k --negotiate -u : "https://MY-API-SERVER" -i

使用Python,我无法找到如何做同样的事情。

到目前为止我尝试的是:

from requests_kerberos import HTTPKerberosAuth, REQUIRED
kerberos_auth = HTTPKerberosAuth(mutual_authentication=REQUIRED,force_preemptive=True)
r = requests.get("https://MY-API-SERVER", auth=kerberos_auth,verify=False, headers={'username':'xxxxx', 'password':'yyyyy'})

0 个答案:

没有答案