I have two certificates that I need to use for a request in python.
I believe the syntax is like this: r=requests.get('https://uat.xyz.com/xx', cert='1.cer')
But in my case there are two certificates that are needed. I tried to put them into a folder and did: r=requests.get('https://uat.xyz.com/xx', verify='/certificates')
but that didn't work either.
Any suggestions what I can do to include multiple certificates?