Has any ntlm nice package ntlm auth?

like this, any good idea for ntlm package ?
Transport: &http.Transport{
Dial: func(network, addr string) (net.Conn, error) {
return (&ntlm.Client{
Domain: “example.com”,
Workstation: “go-ntlm-example”,
Username: “user”,
Password: “pass”,
}).Dial(network, addr)
},
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
},

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.