传递pem文件,证书和用户进行身份验证

时间:2019-05-27 11:16:47

标签: python python-requests chef

我正在尝试使用Chef api进行身份验证。要使用Chef api进行身份验证,我需要传入pem文件,用户和证书。如何使用请求模块传递该信息。

下面是我正在尝试的

r = requests.get('https://example.com', cert=(cert_file,ca_file), auth=('user') )

我浏览了这些文件 https://2.python-requests.org//en/latest/user/advanced/#ssl-cert-verification

我知道pychef可用于与Chef服务器进行交互,但是我想通过request模块来实现。能做到吗?

1 个答案:

答案 0 :(得分:1)

尝试pychefcoderanger,或者从chef-api那里获得启发