webview_go icon indicating copy to clipboard operation
webview_go copied to clipboard

Navigate response headers

Open 3052 opened this issue 2 months ago • 0 comments

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?

3052 avatar Apr 13 '24 14:04 3052