webview / webview_go

Go language bindings for the webview library.
MIT License
176 stars 27 forks source link

Navigate response headers #42

Open 3052 opened 2 months ago

3052 commented 2 months ago

this program works:

package main

import "github.com/webview/webview_go"

func main() {
   w := webview.New(false)
   defer w.Destroy()
   w.Navigate("http://example.com")
   w.Run()
}

but how can I get the response headers from the Navigate?