You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
import (
"fmt"
"github.com/browserutils/kooky/browser/chrome"
)
func main() {
cookiesFile := "[path to cookies file]"
cookies, err := chrome.ReadCookies(cookiesFile)
if err != nil {
// TODO: handle the error
fmt.Println(err)
return
}
for _, cookie := range cookies {
fmt.Println(cookie)
}
}```
### Kooky version
v0.2.2
### Go compiler version
go1.23.2 linux/amd64
### Browser
Chrome 127.0.6533.73
### Operating system and version
WSL/Windows 10
The text was updated successfully, but these errors were encountered:
Checklist
Describe the bug
Using this example code, with Windows Chrome 127.0.6533.73.
I get this panic:
How to reproduce
Run code
Example code
The text was updated successfully, but these errors were encountered: