Registry /
http-client / mzack9999-go-http-digest-auth-client
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
digestauth
✓ github.com/Mzack9999/go-http-digest-auth-client
Make a GET request with digest authentication.
package main
import (
"fmt"
"net/http"
digestauth "github.com/Mzack9999/go-http-digest-auth-client"
)
func main() {
client := digestauth.NewClient("user", "password")
req, _ := http.NewRequest("GET", "https://example.com", nil)
resp, _ := client.Do(req)
fmt.Println(resp.Status)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
0.6.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.