go语言如何绕过tls指纹验证?
参考链接:https://blog.csdn.net/weixin_44532999/article/details/137098081使用python爬取网页代码时,title会出现“Just a moment...“
上面的文章使用curl_cffi 库可以完美绕过,如果使用go语言爬取网页代码,如何绕过?单纯的http client不行
https://github.com/wangluozhe/requests
go的库比Python多太多了,很多Python都是调用go,go原生就支持 cli := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, //忽略证书校验
},
}
resp, err := cli.Get("https://...") imeio 发表于 2024-11-18 15:38
cli := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls ...
不行的,这个方法我试过,用一楼的github项目可以解决
页:
[1]