← Client | SSL Verify(中文) | Proxy →
Describes the SSL certificate verification behavior of a request.
- Set
true
to disable certificate validation, (This is not safe, please set certificates! ) - Set to
false
to enable SSL certificate verification and use the default CA bundle provided by operating system.
false
// Set request HTTPSInsecure(Only the request is effected.)
request.SetHTTPSInsecure(true) // Set request HTTPSInsecure to true.
isInsecure := request.GetHTTPSInsecure() // Get request HTTPSInsecure.
When the request is not set, the client settings are used.
// Set client HTTPSInsecure(For all requests which is sent by the client.)
client.SetHTTPSInsecure(true) // Set client HTTPSInsecure to true.
isInsecure := client.GetHTTPSInsecure() // Get client HTTPSInsecure.