-
Notifications
You must be signed in to change notification settings - Fork 8
Get Messages
Gago edited this page Apr 16, 2021
·
5 revisions
A node with no inputs, and one output.
Allows receiving notifications of incoming messages (reactions).
It triggers whenever a message or reaction was received on Discord.
- Name - input node's name.
- Token - select bot token created via Token node.
- Disable DM - prevent the bot from listening to direct messages.
-
Disable News channels - do not listen to
newschannels. -
Restrict to following channels - input channel ids to listen to. The valid list format is
id, id, id. Example -24545154, 45488454,6578984 - Get message reactions - listen to message reaction events.
-
Disable mention resolver - do not resolve mentions in
messagesandreactions
For incoming message
{
metadata: DiscordMessage;
type: 'message';
}For reactions
{
metadata: DiscordReaction;
type: 'reaction';
}