@c78/node-red-contrib-wecom-group-chat-bot
Version:
Enterprise WeChat group chat WebHook robot
17 lines (14 loc) • 464 B
JavaScript
module.exports = function(RED) {
function WeComConfigNode(config) {
RED.nodes.createNode(this, config);
// 保存配置
this.name = config.name;
this.webhook = config.webhook;
// 验证webhook
if (!this.webhook) {
this.error("Webhook URL不能为空");
}
}
// 注册配置节点类型
RED.nodes.registerType("wecom-config", WeComConfigNode);
};