← Requirements | SSL Verify(中文) | Debug →
Describes the SSL certificate verification behavior of a request.
- Set
false
to disable certificate validation, (This is not safe, please set certificates! ). When you want to turn off the verification of the HTTPS certificate on the client, you can set it at the Client or Request level.
false
// Client level certificate ignores verification
client.SetHttpsInsecure(true);
// Request level certificate ignores verification
request.SetHttpsInsecure(true);
← Requirements | SSL Verify(中文) | Debug →