shad-go/lectures/06-http/customclient/customclient.go
2020-04-02 17:01:16 +03:00

34 lines
861 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
import (
"crypto/tls"
"crypto/x509"
"net/http"
"net/http/cookiejar"
"time"
)
func main() {
// все куки записанные в этот Jar будут передаваться
// и изменяться во всех запросах
cj, _ := cookiejar.New(nil)
client := &http.Client{
Timeout: 1 * time.Second,
Jar: cj,
Transport: &http.Transport{
// резмер буферов чтения и записи (4KB по-умолчанию)
WriteBufferSize: 32 << 10,
ReadBufferSize: 32 << 10,
// конфиг работы с зашифрованными соединениями
TLSClientConfig: &tls.Config{
Certificates: []tls.Certificate{},
RootCAs: &x509.CertPool{},
// только для отладки!
InsecureSkipVerify: true,
// ..
},
// ...
},
}
_ = client
}