Specify a client certificate in Postman

I use Postman to send POST and GET requests, and when sending the first request I will get a list of imported certificates from which I can choose which one to use. Is it possible to get Postman to force me to select a certificate every time I send a request (or indicate which request uses a different certificate, for example, in soapUI, in case I run the collection)? I would like to send two identical requests, where one is sent with certificate A and the other with certificate B and parses the responses. Right now I could do this with closing the client and re-opening it, but there seems to be a lot of noise for ~ 100 requests.

+4
source share
1 answer

You can try using newman for your request. With newman, you can re-run the same collection with different certificate options.

https://www.npmjs.com/package/newman#ssl-client-certificates

0
source

Source: https://habr.com/ru/post/1673504/


All Articles