如何检测 Slack 中的新用户?
How to detect a new user in Slack?
我正在使用 Slack API 并希望在用户首次加入团队时检测事件,但在文档中找不到此类事件。
我应该寻找什么?
我认为 team_join
might be the event you're looking for? Depending on whether you need to respond immediately (and the consequences of missing an event if your bot is offline), you might also consider just calling users.list
定期并与已经看到的用户列表进行比较。
我正在使用 Slack API 并希望在用户首次加入团队时检测事件,但在文档中找不到此类事件。
我应该寻找什么?
我认为 team_join
might be the event you're looking for? Depending on whether you need to respond immediately (and the consequences of missing an event if your bot is offline), you might also consider just calling users.list
定期并与已经看到的用户列表进行比较。