mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 06:21:29 +08:00
10 lines
1.2 KiB
Markdown
10 lines
1.2 KiB
Markdown
# 消息源列表
|
||
|
||
「消息源」在文档的某些位置可能还称为「消息平台」「聊天平台客户端」「消息源客户端」「机器人前端」等。比如网上很多开源的 SmartQQ 封装或网页微信封装,我们这里就称他们为「消息源」,他们的功能通常是模拟登录账号、维护登录状态、上报接收到的消息、通过某种方式调用接口发送消息等。通过适配器,本程序可以支持多种消息源,下面是目前所支持的消息源列表:
|
||
|
||
| 消息源名称 | 官网/项目地址 | 配置文件中定义时填写项目 |
|
||
| -------------- | ---------------------------------------- | ---------------------------------------- |
|
||
| mojo_webqq | https://github.com/sjdy521/Mojo-Webqq | `api_url`:API 根地址(必填) |
|
||
| mojo_weixin | https://github.com/sjdy521/Mojo-Weixin | `api_url`:API 根地址(必填) |
|
||
| coolq_http_api | https://github.com/richardchien/coolq-http-api | `api_url`:API 根地址(必填);`token`:发送请求时的 token(设置了的情况下必填) |
|