version 1.3.3
Version 1.3.3 is now available with a new customize option called authorizeErrorHandler
!
If you want to ignore authorize errors for edge cases, which are not actionable for your app, you can set the following option to immediately return 200 OK / ack message in Socket Mode to Slack API servers.
const app = new SlackApp({
authorizeErrorHandler: async ({ request, error }) => new Response("", { status: 200 }),
// other arguments ...
});
All changes can be reviewed at 1.3.2...1.3.3