slack-edge icon indicating copy to clipboard operation
slack-edge copied to clipboard

Slack app development framework for edge functions with streamlined TypeScript support

Results 7 slack-edge issues
Sort by recently updated
recently updated
newest added

Thank you for creating this library! I have a suggestion to enhance its functionality by allowing handlers to be removed. The reason for this proposal is to address issues encountered...

### Hello! Thank you for creating a great lib! I have built a simple slack bot and I am using supabase edge functions to handle the requests. I have a...

I have observed that the ChannelDeletedEvent (when a Slack channel is deleted) payload contains `actor_id` for the user that deleted the channel, although this is not doc'd on the [API...

https://github.com/slack-edge/slack-edge/blob/0cfcb1f10282f07b38a796055a588abc55eb59f1/src/request/payload/event.ts#L944

bug
enhancement

Hello, We found that the framework's usage of [`auth.test`](https://api.slack.com/methods/auth.test) causes errors in certain scenarios where a burst of events trigger the method's [rate limiting](https://api.slack.com/methods/auth.test#rate-limiting): > This method allows hundreds of...

bug
enhancement

## Problem In production, any application pointing to the public is bound to receive bot requests. Pictured above are bots attacking our non-existent WordPress site. We want to handle these...

enhancement

The framework registers its built-in handlers in the constructor first, including `tokens_revoked`, `app_uninstalled`, `app_uninstalled_team` events: https://github.com/slack-edge/slack-edge/blob/446dd1ccf739adb97c93964c358ed247dce831de/src/oauth-app.ts#L235-L236 The handlers are pushed on to an array that match based on the event...

bug