go https client

Posted qianbo_insist

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go https client相关的知识,希望对你有一定的参考价值。

go https client get

go 语言如何使用https client, 其实还是很简单的,首先要 import “crypto/tls”
然后使用TLSClientConfig

show me the code

package main

import (
	"crypto/tls"
	"fmt"
	"io/ioutil"
	"net/http"
)

func main() {
	tr := &http.Transport{
		TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
	}
	client := &http.Client{Transport: tr}
	resp, err := client.Get("https://blog.csdn.net/qianbo042311/article/details/118654609")

	if err != nil {
		fmt.Println("error:", err)
		return
	}
	defer resp.Body.Close()
	body, err := ioutil.ReadAll(resp.Body)
	fmt.Println(string(body))
}

以上是关于go https client的主要内容,如果未能解决你的问题,请参考以下文章

client-go实战之七:准备一个工程管理后续实战的代码

client-go实战之七:准备一个工程管理后续实战的代码

client-go系列之5---Informer

go https client

npm : 无法加载文件 D:softcodeProcess ode ode_global pm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micr +(代码片段

golang 片段7 for https://medium.com/@francesc/why-are-there-nil-channels-in-go-9877cc0b2308