Deron Lee
Deron Lee

Reputation: 379

How to get username/userID in slack bot

https://github.com/DeronLee/starbot.git

I created a slack bot and it worked fine. But when somebody sends message to the bot, I'm not able to tell who sent it.

I tried msg.user msg.username, but all of them are undefined.

I just want my output to look like this

abc: @starbot hello
starbot: hello. abc 

finally. I got it.

    slack.users.info({
    token: config('SLACK_TOKEN'),
    user: msg.user
  }, (err, data) => {
    if (err) throw err
    var text = makeMessage.makeMessage(msg.text, data.user.name);
    sendMessage.send(msg, text, slack);

Upvotes: 8

Views: 14763

Answers (1)

Deron Lee
Deron Lee

Reputation: 379

slack.users.info({
  token: config('SLACK_TOKEN'),
  user: msg.user
}, (err, data) => {
  if (err) throw err

  var text = makeMessage.makeMessage(msg.text, data.user.name);
  sendMessage.send(msg, text, slack);

Upvotes: 6

Related Questions