-
Notifications
You must be signed in to change notification settings - Fork 840
Onepush configuration [CN]
Alas 使用 Onepush 提供消息推送。可接入各种消息平台,例如 Bark, ServerChan, Discord, 邮件等。
支持列表见 Onepush providers
但要注意, Onepush 在Windows下使用时需要设置设备名称为英文(右键此电脑-属性-重命名这台电脑),不然可能会导致Python报错。
在推送配置部分中的各服务文档获取需要的推送参数。
没写到的欢迎补充
配置为 yaml 格式,需要提供 推送服务名 provider
和对应的参数。
provider: bark
key: Vg*******************
更多可选参数,例如添加 sound
provider: bark
key: Vg*******************
sound: alert
Key 的详细获取方式
以 Bark 为例,在 Onepush 仓库中,查看 providers/bark.py
_params = {
'required': ['key'],
表示该推送方法需要填写参数 key
。
使用默认服务器时,在服务器列表中可以找到 key
(红框标示处)
展开图片
即 Vg*******************
如果你有自己的 bark 服务器,需要将完整链接作为 key
即 https://bark.xxx.xxx/Fkq5***************
provider: smtp
host: smtp.qq.com # smtp 服务器地址
user: [email protected] # 用户名,通常是你的邮箱。
password: Passw0rd! # 登录密码,一般为需要单独申请的授权码。
port: 465 # smtp 服务器端口,如果有提供ssl端口(465)建议使用。不填写时默认为 25
# ssl: true # 显式指定使用ssl连接,端口是465时默认为true。
provider: smtp
host: smtp.gmail.com
user: [email protected]
password: Passw0rd!
port: 587
ssl: true
常见邮箱
-
163邮箱: https://note.youdao.com/ynoteshare/index.html?id=f9fef46114fb922b45460f4f55d96853
- host:
smtp.163.com
- port:
465
- host:
-
qq邮箱: https://service.mail.qq.com/cgi-bin/help?subtype=1&&no=166&&id=28
- host:
smtp.qq.com
- port:
465
- host:
-
gmail: https://support.google.com/mail/answer/7104828?hl=zh-Hans
- host:
smtp.gmail.com
- port:
587
- ssl:
true
- host:
provider: pushplus
token: ********************
provider: pushdeer
pushkey: **********************
Server 酱已停止运行,需使用 Turbo 版,免费版每天限制五条。
provider: serverchanturbo
sctkey: SCT16*************************
provider: discord
webhook: https://discord.com/api/webhooks/12345678912345678900/verylongstring_veryveryverylongrandomstring
provider: telegram
token: 16xxxxxxx:xxxxxxxxxxx # 从 @BotFather 获取
userid: 10000000 # 从 @userinfobot 获取
api_url: api.telegram.org # 国内需使用反代 API 或网络代理
provider: wechatworkapp
corpid: xxxxxxxx
corpsecret: xxxxxxxx
agentid: 10001
provider: wechatworkbot
key: xxxxxxxx
provider: dingtalk
token: xxxxxxxx
provider: gocqhttp
endpoint: http://cqhttp.example.com:5700
token: YOUR_TOKEN # 设置了 access_token 时需要
message_type: private # private 为私聊消息,group 为群聊消息
# user_id: 12345678 # message_type 为 private 时需要
# group_id: 12345678 # message_type 为 group 时需要
provider: custom
url: https://your.web.hook/path
method: post # http 请求方法
data: # data 字典
your_arg: aaa
your_arg2: bbb
最后将得到的 json 填入 Alas 设置 -> 调试设置 -> 错误推送设置 即可
把游戏切换到啾信页面,找一个任务清空下次运行时间加入队列,启动 alas 即可。等待10秒左右会报错并发送 GamePageUnknownError。
Getting Started
- Installation [EN]
- Installation [CN]
- Installation With Docker [EN]
- Emulator Support [CN]
- FAQ [EN/CN]
- FAQ [JP]
- Troubleshooting [EN]
- Another Installation guide
- Research Filter String [EN]
- Research Filter String [CN]
- Reward Shop Filter String [EN/CN]
- Onepush Configuration [EN]
- Onepush Configuration [CN]
Development
- Perspective [CN]
- Perspective [EN]
- Debug perspective [CN]
- Debug perspective [EN]
- Item Statistics [EN]
- 1. Start
- 2.1. Debugging
- 2.2. Multi-server support
- 3.1. Utils
- 3.2. Decorators
- 3.3. Log
- 3.4. Exception
- 4.1. Detection objects
- 4.2. UI control
- 4.3. OCR
- 4.4. State loop
- 5.1. Local Map
- 5.2. Create globe Map
- 5.3. Globe Map
- 6.1. GUI Option
MISC