# Cyberdrop-DL 接入 Server酱：批量下载完成时微信收到通知（2026 教程）

> Cyberdrop-DL 内置 Apprise 通知支持，在 apprise.txt 填入 schan:// 协议地址即可通过 Server酱 收到微信通知。

- 网页版：https://sct.ftqq.com/docs/integrations/cyberdrop-dl/
- 更新日期：2026-07-17

# Cyberdrop-DL + Server酱：批量下载完成时微信收到通知

> 效果：Cyberdrop-DL 配置后可通过 Server酱 向微信推送通知。

## 前置条件

- Server酱 SendKey：登录 sct.ftqq.com，在「SendKey」页面复制（[30 秒获取教程](https://sct.ftqq.com/docs/getting-started/sendkey/)）。SCT 开头的 Key 可直接使用 schan:// 协议；sctp 开头的 Key 见下文说明。
- Cyberdrop-DL 已安装并正常运行。其通知功能依赖 apprise 库，通常随 Cyberdrop-DL 一并安装。

## 配置步骤

### 1. 创建 apprise.txt

在 Cyberdrop-DL 的配置目录中创建（或编辑）`apprise.txt` 文件，写入以下内容：

```
schan://你的SENDKEY
```

将 `你的SENDKEY` 替换为你的 Server酱 Turbo SendKey（SCT 开头）。`schan://` 是 Apprise 中 Server酱的专用协议，底层调用 `https://sctapi.ftqq.com/你的SENDKEY.send`。保存后，Cyberdrop-DL 即可通过该地址推送通知。

### 2. 命令行自测

在终端执行以下命令，验证通知链路是否通畅：

```bash
pip install apprise && apprise -t "测试" -b "正文" "schan://你的SENDKEY"
```

微信收到推送即表示配置成功。

### 3. Server酱³（sctp 开头 Key）用户

Server酱³ 的 sctp 开头 SendKey 暂无 Apprise 专用插件，可使用通用 `json://` 插件直连 push.ft07.com API。具体接法详见 [Apprise 接入 Server酱](https://sct.ftqq.com/docs/integrations/apprise/)。

## 完整示例

一个典型的 `apprise.txt` 文件内容：

```
schan://你的SENDKEY
```

如需同时推送到其他通道（企业微信、钉钉、飞书群等），在 apprise.txt 中每行追加一条对应的 apprise URL 即可。通道配置参考 [Server酱通道说明](https://sct.ftqq.com/docs/getting-started/channels/)。

## 常见问题

**每天能发多少条通知？**

免费用户每天 5 条，每分钟上限 50 条。订阅会员目前特价最低 3 元/月，一天最多可发 1000 条（[价格详情](https://sct.ftqq.com/subscribe)）。

**配置后没收到消息怎么办？**

先用命令行 `apprise -t "测试" -b "正文" "schan://你的SENDKEY"` 单独测试，排除 Cyberdrop-DL 自身问题。若 apprise 测试也不通，参考 [常见问题与排查](https://sct.ftqq.com/docs/getting-started/faq/)。

**下载频繁触发会超限吗？**

Server酱 每分钟最多 50 条请求。如果你的通知触发频繁，建议适当控制下载任务频率，避免短时间内大量触发通知。

**sctp 开头的 Key 能用 schan:// 吗？**

不能。schan:// 协议仅对接 Server酱Turbo（SCT 开头）。sctp 开头的 Server酱³ Key 请使用 `json://` 插件，详见 [Apprise 接入 Server酱](https://sct.ftqq.com/docs/integrations/apprise/)。

## 相关集成

- [Python 脚本推送](https://sct.ftqq.com/docs/integrations/python/)
- [青龙面板任务通知](https://sct.ftqq.com/docs/integrations/qinglong/)
- [Uptime Kuma 宕机告警](https://sct.ftqq.com/docs/integrations/uptime-kuma/)


## 懒人方案：把这段话复制给你的 AI 助手

把下面这段文字原样粘贴给 Claude Code、Cursor 或任何 AI 编程助手，它就会替你完成 Server酱 的接入：

```text
请帮我把 Server酱 微信通知接入到我当前的项目/工具中：
1. API：POST https://sctapi.ftqq.com/{SendKey}.send，参数 title（必填，不能含换行）、desp（正文，支持 Markdown，可选）；成功时返回 JSON 的 code 为 0。
2. 如果我的 SendKey 以 sctp 开头，则改用 https://{uid}.push.ft07.com/send/{SendKey}.send，uid 是 SendKey 中 sctp 与 t 之间的数字。
3. SendKey 从环境变量 SERVERCHAN_SENDKEY 读取；如果没有，提醒我到 https://sct.ftqq.com 免费获取（每天 5 条额度）。
4. 安全要求：不要把 SendKey 硬编码进代码、不要打印到日志、不要提交到 git。
5. 频率约定：任务结束发 1 条结果摘要即可，批量任务合并成一条，不要每步都推。
请根据我当前的项目和场景直接写好代码/配置并验证。
```

