Messengerbot for Slack

Hi All,

I am new to this and wondering if anyone has ever created a bot that will send a message to user(B) based off of what user(A) says or selected. I am using this for a Slackbot.

Thank you,
M

People do that all the time, not like with that context, but for example:

  • Client connects to websocket
  • Client sends data to verify the connection
  • API responds

You could see that like communication between 2 users. User A sends data and user B sends data back.

You might wanna take a look at this or the built in http module from node, both are very useful as communication tool. ws is easier

1 Like

thank you, MMYT! I will look into this. I am very new and will need to do some trial and errors.