Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,8 @@ curl http://localhost:8000/v1/chat/completions \

### 注册相关

> **拟人化行为**:浏览器自动化已内置拟人化操作(随机延迟、贝塞尔曲线鼠标移动、自然打字节奏),以降低被检测风险。可通过 `register_headless: false` 开启可视模式观察行为。

| 错误 | 原因 | 解决方案 |
|------|------|----------|
| `无法获取验证码邮件` | 临时邮箱服务不稳定或邮件延迟 | 代理遭到拉黑,更换代理 |
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -487,13 +487,13 @@ var appConfig = AppConfig{
MinCount: 10,
CheckIntervalMinutes: 30,
RegisterThreads: 1,
RegisterHeadless: true,
RegisterHeadless: false,
RefreshOnStartup: true,
RefreshCooldownSec: 240, // 4分钟
UseCooldownSec: 15, // 15秒
MaxFailCount: 3,
EnableBrowserRefresh: true, // 默认启用浏览器刷新
BrowserRefreshHeadless: true,
BrowserRefreshHeadless: false,
BrowserRefreshMaxRetry: 1, // 浏览器刷新最多重试1次
},
}
Expand Down
Loading