-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is the bug so obvious? #273
Comments
Hello, |
"https://captcha.gtimg.com/TCaptcha.js" You try, but the request cannot be successful |
Can you provide code snippet instead of screenshot, it will accelerate debugging. |
The issue is caused by the presence of modify to
If you are using Chrome TLS, please use the default settings of the client, as chrome is shuffling TLS extensions. |
Hello, I used the default configuration, and the link in the request diagram failed. Using the default Google ja3. |
package main
import (
"fmt"
"github.com/Noooste/azuretls-client"
)
func main() {
session := azuretls.NewSession()
url := "https://captcha.gtimg.com/TCaptcha.js"
headers := azuretls.OrderedHeaders{
{"accept", "*/*"},
{"accept-encoding", "gzip, deflate, br, zstd"},
{"accept-language", "zh-CN,zh;q=0.9"},
{"cache-control", "no-cache"},
{"pragma", "no-cache"},
{"referer", "https://ti.qq.com/"},
{"sec-ch-ua", "\"Chromium\";v=\"130\", \"Google Chrome\";v=\"130\", \"NotA_Brand\";v=\"99\""},
{"sec-ch-ua-mobile", "?0"},
{"sec-ch-ua-platform", "\"Windows\""},
{"sec-fetch-dest", "script"},
{"sec-fetch-mode", "no-cors"},
{"sec-fetch-site", "cross-site"},
{"user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36"},
}
response, err := session.Get(url, headers)
if err != nil {
panic(err)
}
fmt.Println(response.StatusCode)
} This code works perfectly fine, can you confirm this code is working on your side ? |
You're right. I found that I would report an error several times in a row. This is link multiplexing, right? |
I'm not sure what's causing your problem, does this error only appear from time to time? |
Unable to set up and successfully request h2 using the returned ja3 of https://tls.peet.ws/api/all
The text was updated successfully, but these errors were encountered: