Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 788 Bytes

1-Verify-EN.md

File metadata and controls

24 lines (18 loc) · 788 Bytes

← Requirements | SSL Verify(中文) | Debug →


SSL Verify

Summary

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.

Default

  • false

Setting

Setting on Client and Request

//  Client level certificate ignores verification
client.SetHttpsInsecure(true);

// Request level certificate ignores verification
request.SetHttpsInsecure(true);

← Requirements | SSL Verify(中文) | Debug →