我開始學(xué)習(xí) golang,我正在嘗試制作一個(gè)簡(jiǎn)單的 http 客戶端,它將從我們的一個(gè) oVirt 集群中獲取虛擬機(jī)列表。我嘗試訪問的 API 具有自簽名證書(在集群安裝期間自動(dòng)生成),并且 golang 的 http.client 在從證書序列化時(shí)間時(shí)遇到問題。您可以在下面找到代碼和輸出。package mainimport ( "fmt" "io/ioutil" "net/http" "crypto/tls")func do_request(url string) ([]byte, error) { // ignore self signed certificates transCfg := &http.Transport{ TLSClientConfig: &tls.Config { InsecureSkipVerify: true, }, } // http client client := &http.Client{Transport: transCfg} // request with basic auth req, _ := http.NewRequest("GET", url, nil) req.SetBasicAuth("user","pass") resp, err := client.Do(req) // error? if err != nil { fmt.Printf("Error : %s", err) return nil, err } defer resp.Body.Close() body, _ := ioutil.ReadAll(resp.Body) return []byte(body), nil}func main() { body, _ := do_request("https://ovirt.example.com/") fmt.Println("response Status:", string(body))}以及我嘗試編譯時(shí)的錯(cuò)誤:$ go run http-get.goError : Get https://ovirt.example.com/: tls: failed to parse certificate from server: asn1: time did not serialize back to the original value and may be invalid: given "141020123326+0000", but serialized as "141020123326Z"response Status: 有沒有辦法忽略這個(gè)驗(yàn)證?我嘗試使用其他編程語(yǔ)言(python、ruby)發(fā)出請(qǐng)求,跳過不安全的證書似乎就足夠了。謝謝!PS:我知道正確的解決方案是用有效的證書更改證書,但目前我不能這樣做。
GO https請(qǐng)求,時(shí)間沒有序列化回原來的值
炎炎設(shè)計(jì)
2022-01-10 16:57:11