A Go library for extracting cookies from various web browsers on macOS (Windows and Linux support coming soon).
- Extract cookies from multiple browsers on macOS:
- Safari
- Google Chrome
- Microsoft Edge
- Firefox
- Other Chromium-based browsers
- Generate
http.CookieJar
directly for use withhttp.Client
- Filter cookies by domain suffix, name, or other criteria
cookies, err := gocookie.GetCookies(gocookie.Edge, gocookie.WithDomainSuffix("example.com"))
if err != nil {
log.Fatal(err)
}
for _, cookie := range cookies {
fmt.Printf("%+v\n", cookie)
}
jar, err := gocookie.GetCookiesJar(gocookie.Edge, gocookie.WithDomainSuffix("example.com"))
if err != nil {
log.Fatal(err)
}
client := &http.Client{
Jar: jar,
}
client.Get("https://example.com")
When reading cookies from Chromium-based browsers (Chrome, Edge, etc.) on macOS, if no secretKey
is provided, the library will attempt to read the encryption key from the system keychain. This will trigger a system prompt asking for keychain access permission. To avoid this prompt, you can provide the secret key directly using the WithSecretKey
option.
Windows and Linux support is coming soon.
This project was inspired by and builds upon the work of:
Special thanks to their authors and contributors.