Description of Problem
I'm trying to hit a REST endpoint that requires a certificate from the browser and from Postman.
I've configured Chrome and Postman with a client side cert. The cert works when using a Chrome on a Swagger page (using the client side cert selected by a browser popup) but not when using Postman.
So my guess is that Postman is not using the certificate I've configured. I tried to examine Chrome DevTools Networking tab to see if it shows the certificate being passed, but it doesn't.
So that is my question. Does Chrome (or Postman) have the ability to display the client side certificate being used for a given request?
I'm looking for something akin to using the curl --verbose with a client side certificate. When using --verbose with curl, both the client and server side certificate information is dumped to the console for viewing.
Does Chrome DevTools (or Postman) support something like this?
Searching for an answer to my question
Searching in SO for [certificate and debugging] and [certificate and google-chrome] and [certificate and postman] I found:
Testing API's with certificates - This was helpful but didn't answer my question
How to determine if server has ssl certificate - did not help
need help Debugging SSL handshake in tomcat - Useful but not applicable for my question
Created self signed Certificate working with curl but not with chrome - Did not help
Many other certificate questions so maybe the answer is there. If so please let me know.