2017-03-08 10 views

답변

1

controller.on('event_name', function (bot, message) { ... }) 처리기를 사용하여 다른 이벤트를 연결할 수 있습니다. 슬랙 이벤트의 전체 목록은 docs입니다. 제 의견으로는 team_join 이벤트를 사용할 수 있습니다. 이 이벤트는 새 사용자가 팀에 가입하라는 초대를 수락하고 팀에 로그인 할 때 트리거됩니다.

예 :

controller.on('team_join', function (bot, message) { 
    bot.api.chat.postMessage({channel: response.channel.id, text: 'Welcome', as_user: true}, function (err, response) { 
     // Process postMessage error and response 
    }) 
})