feat: update Chrome UA to 133 and add sec-ch-ua/Sec-Fetch headers for anti-detection

This commit is contained in:
jackwener
2026-03-09 12:04:26 +08:00
parent df9b58ed0a
commit b2603eb753
2 changed files with 13 additions and 2 deletions

View File

@@ -8,5 +8,10 @@ BEARER_TOKEN = (
USER_AGENT = (
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) "
"AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/131.0.0.0 Safari/537.36"
"Chrome/133.0.0.0 Safari/537.36"
)
# Chrome Client Hints — sent by modern Chrome on every request
SEC_CH_UA = '"Chromium";v="133", "Not(A:Brand";v="99", "Google Chrome";v="133"'
SEC_CH_UA_MOBILE = "?0"
SEC_CH_UA_PLATFORM = '"macOS"'