Encapsulating HTTP Requests and Logging in Go
Hello everyone! I am Lao Kou! Let’s learn how to encapsulate HTTP requests and logging together. HTTP Requests To encapsulate HTTP requests, you can directly use <span>net/http</span>. There are two main points to note: <span>How to disable HTTPS verification</span> and <span>Client file upload</span>. How to Disable HTTPS Verification // Skip TLS certificate verification client := … Read more