fix: 补全遗漏的 botToken 修复(config-server + 官网教程)

code review 发现三处漏修:
- fix(config-server/public/index.html): botToken → token,
  这是实际运行的配置页面,漏改会导致用户配置后仍然 401
- fix(website/tutorial.html): 示例 JSON botToken → token
- fix(website/guide.html): 示例 JSON botToken → token
  文档示例错误会导致用户手动配置时照抄出错

全仓库现已无 botToken 残留。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hfshfg
2026-04-01 10:04:24 +08:00
parent 4dac1ae4ab
commit 5dc204ab4e
3 changed files with 3 additions and 3 deletions

View File

@@ -1048,7 +1048,7 @@ docker compose up -d</code></pre>
}
},
"channels": {
"telegram": { "enabled": true, "botToken": "xxx:xxx" },
"telegram": { "enabled": true, "token": "xxx:xxx" },
"qqbot": { "enabled": true, "appId": "xxx", "appSecret": "xxx" }
}
}</code></pre>