I have a rest service which is using TLSv1.2. How to set tls version to TLSv1.2 while sending request through postman?
We need response please
Hi @MuralidharGoud and @jagoraxr,
In addition to those setting above, TLS 1.2 is also something thatβs negotiated during the handshake when the client and server agree on a protocol and a cipher to use when encrypting the connection.
If you are in control of the development server, I would also recommend only allowing TLS 1.2 from the server side, unless you have dependencies that require a lesser version.
Additionally, I would upload the client certificate via Postmanβs setting so you can perform a successful TLS Handshake and not ignore it.
Hope this helps!
Orest