req
req copied to clipboard
ImpersonateChrome - tls: user canceled
Using ImpersonateFirefox instead works fine
package main
import (
"fmt"
"log"
"github.com/imroc/req/v3"
)
func main(){
client := req.C().ImpersonateChrome()
resp, err := client.R().Get("https://tuta.com/")
if err != nil {
log.Fatal(err)
}
fmt.Println(resp.String())
}
This is true, but it may be difficult to troubleshoot, and who can volunteer for this?
Is this likely to be an upstream bug of uTLS? How would one go about troubleshooting it?