我正在尝试使用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模块来实现。能做到吗?