req icon indicating copy to clipboard operation
req copied to clipboard

为什么设置了EnableForceHTTP1之后,无法设置TLS随机指纹,如果我有这个需求是http1下的随机指纹,应该怎么办呢

Open ChetWei opened this issue 3 months ago • 0 comments


// EnableForceHTTP1 enable force using HTTP1 (disabled by default).
//
// Attention: This method should not be called when ImpersonateXXX, SetTLSFingerPrint or
// SetTLSHandshake and other methods that will customize the tls handshake are called.
func (c *Client) EnableForceHTTP1() *Client {
	c.Transport.EnableForceHTTP1()
	return c
}

ChetWei avatar Sep 23 '25 16:09 ChetWei