为微信群聊和私聊增加敏感词功能

This commit is contained in:
DBinK
2023-03-09 14:49:19 +08:00
parent 1275a483a5
commit a9dd790676
2 changed files with 11 additions and 11 deletions

5
.gitignore vendored
View File

@@ -10,3 +10,8 @@ device.json
go-cqhttp
logs/
session.token
*venv
chatgpt.bat
configtmp.json
config-template.json
sensitive_words.txt

View File

@@ -395,9 +395,8 @@ https://slack.dev/bolt-python/tutorial/getting-started
```
### 9.Web
#### http
**需要:** 服务器
**Contributor:** [RegimenArsenic](https://github.com/RegimenArsenic)
**依赖**
@@ -411,17 +410,13 @@ pip3 install PyJWT flask
"channel": {
"type": "http",
"http": {
"http_auth_secret_key": "6d25a684-9558-11e9-aa94-efccd7a0659b",//jwt认证秘钥
"http_auth_password": "6.67428e-11",//认证密码,仅仅只是自用,最初步的防御别人扫描端口后DDOS浪费tokens
"port": "80"//端口
"http_auth_secret_key": "6d25a684-9558-11e9-aa94-efccd7a0659b", //jwt认证秘钥
"http_auth_password": "6.67428e-11", //认证密码,仅仅只是自用,最初步的防御别人扫描端口后DDOS浪费tokens
"port": "80" //端口
}
}
```
本地运行:`python3 app.py`运行后访问 `http://127.0.0.1:80`
URL如果端口是 80 ,可不填
```
http:/你的固定公网ip或者域名:端口/
```
服务器运行:部署后访问 `http://公网域名或IP:端口`