commit | 9da83de55d71220f00cbffb736dba373e6e683b1 | [log] [tgz] |
---|---|---|
author | xinsnake <me@xyzhou.com> | Tue May 08 15:27:35 2018 +1000 |
committer | GitHub <noreply@github.com> | Tue May 08 15:27:35 2018 +1000 |
tree | 6ff310500deb5a8236a87e5473f713cd2ddd057a | |
parent | 366760120fe0342664d581b235be4eb08aca8834 [diff] | |
parent | 11167a672f88363051c7c40ce097d00f510e0232 [diff] |
Merge pull request #6 from paul-hoehne/master Adding headers support & rename
Golang Http Digest Authentication Client
This client implements RFC7616 HTTP Digest Access Authentication and by now the basic features should work.
// import import dac "github.com/xinsnake/go-http-digest-auth-client" // create a new digest authentication request dr := dac.NewRequest(username, password, method, uri, payload) response1, err := dr.Execute() // check error, get response // reuse the existing digest authentication request so no extra request is needed dr.UpdateRequest(username, password, method, uri, payload) response2, err := dr.Execute() // check error, get response
Or you can use it with http.Request
t := dac.NewTransport(username, password)
req, err := http.NewRequest(method, uri, payload)
if err != nil {
log.Fatalln(err)
}
resp, err := t.RoundTrip(req)
if err != nil {
log.Fatalln(err)
}
defer resp.Body.Close()
fmt.Println(resp)