[Exception] The client initiates an HTTPS request and reports an error, but the server returns 400 Bad Request and prompts No required SSL certificate was sent

1. Error screenshot

insert image description here
insert image description here

2. Error description

2.1 HTTP response code 400

HTTP response code 400 means that the client sent an invalid request. This could be due to reasons such as missing or malformed required parameters in the request. The server cannot handle this request and returns a 400 response code. If you are writing a web application, it is recommended to check the validity of the request as it is being processed and return a 400 response code if necessary to indicate to the client that the request was invalid.

2.2 返回No require SSL certificate was sent

From the error report, the client received an HTTP 400 response from the server, because the request sent by the client lacks the required SSL certificate. The request needs to use the SSL certificate for authentication, but the client did not provide a certificate.

Three, error resolution

Just reconfigure the client certificate.

Guess you like

Origin blog.csdn.net/wstever/article/details/130225331