req icon indicating copy to clipboard operation
req copied to clipboard

ImpersonateChrome - tls: user canceled

Open powellnorma opened this issue 1 year ago • 2 comments

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())
}

powellnorma avatar Mar 14 '24 08:03 powellnorma

This is true, but it may be difficult to troubleshoot, and who can volunteer for this?

imroc avatar Mar 15 '24 02:03 imroc

Is this likely to be an upstream bug of uTLS? How would one go about troubleshooting it?

powellnorma avatar Mar 23 '24 16:03 powellnorma