How to get username/userID in slack bot

2019-06-26 08:48发布

问题:

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);

回答1:

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);