DisableInsecureSkipVerify disable send https without verifying the server's certificates (disabled by default).
()
| 417 | // DisableInsecureSkipVerify disable send https without verifying |
| 418 | // the server's certificates (disabled by default). |
| 419 | func (c *Client) DisableInsecureSkipVerify() *Client { |
| 420 | c.GetTLSClientConfig().InsecureSkipVerify = false |
| 421 | return c |
| 422 | } |
| 423 | |
| 424 | // SetCommonQueryParams set URL query parameters with a map |
| 425 | // for requests fired from the client. |