Anson MacKeracher
Anson MacKeracher
I would love this as well! I'm confused about how bot tokens fit into the oauth flow.
Include `bot` in the `scope` option, and also add a `params` argument to the `verify` callback: ``` javascript passport.use(new SlackStrategy({ clientID: process.env.SLACK_CLIENT_ID, clientSecret: process.env.SLACK_CLIENT_SECRET, scope: 'bot users:read', }, (accessToken, refreshToken,...
I'm not sure if this is the issue, but `.shift()` on a queue will `ack` the last received message. Maybe prefetch count is screwing that up and acknowledging the last...