Home > Enterprise >  Passing a certificate on a Python HTTP request
Passing a certificate on a Python HTTP request

Time:05-14

This post may be duplicated, but I'm trying to find the simplest way to perform a rest API request passing a certificate just like I do within Postman:

Cert configuration

Payload

CodePudding user response:

For the those of you in the future looking for the easiest solution, I found this thread on GitHub that solved my issue:

https://github.com/psf/requests/issues/1573#issuecomment-348968658

Was able to get the response I was wishing for.

  • Related