AstrBot 插件, 用于触发并调用n8n webhook
AstrBot plugin for triggering and calling n8n webhooks.
Note
在对话中使用/n8n
触发调用n8n, 比如/n8n ob:#创意 #想法 #日志 可以做一个n8n的插件
则会调用n8n webhook,内容是
{ "message": "ob:#创意 #想法 #日志 可以做一个n8n的插件", "senderName": "somebody" }
Endpoint:
POST https://your-n8n-domain.com/webhook/your-path
Basic Auth:
username: 'username-you-need-change'
password: 'password-you-need-change'
Request Body (JSON):
{
"message": "消息内容或base64编码的图片",
"senderName": "消息发送人"
}
Response:
{
"success": true,
"data": "n8n响应的message"
}
可以在n8n导入n8n_webhook_example案例使用本插件对接