Markoudstaal / node-red-contrib-discord-advanced

Recieve, send, edit and delete Discord messages in node-red.
MIT License
46 stars 16 forks source link

To Publish messages in announcement channels #61

Closed javis86 closed 1 year ago

javis86 commented 1 year ago

Can we use the nodes to publish messages in announcement channels automatically?

javis86 commented 1 year ago

Two ways for publish on announcement on 3.4.0-alpha.1: Creating a new messaging and publishing it:

msg.payload = "Mi new announcement";
msg.channel = "1077588567209017384"; // Your channel ID
msg.crosspost = true;

return msg;

Publishing an existing message:

msg.channel = "1077588567209017384"; // Your channel ID
msg.message = "1077605124064682054";
msg.action = "crosspost";

return msg;