You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 2, 2022. It is now read-only.
I noticed this when I tried to get started writing a new slack app with this framework, but the sample code didn't work at all. Only when I used network debugging did I notice that the initial call to https://api.slack.com/rtm fails with a "deprecated" error.
According to the Slack documentation:
New Slack apps may not use any Real Time Messaging API method. Create a classic app and use the V1 Oauth flow to use RTM.
With an additional notice of:
rtm.start is deprecated and behavior for existing users will change on September 30, 2022.
From a quick search through this repository, socket mode doesn't seem supported yet. I don't think the events api is implemented yet either? Not certain though, it seems one is more a transport layer, and the other is more an application layer 🤷
I noticed this when I tried to get started writing a new slack app with this framework, but the sample code didn't work at all. Only when I used network debugging did I notice that the initial call to
https://api.slack.com/rtmfails with a "deprecated" error.According to the Slack documentation:
With an additional notice of:
The Slack docs recommend using Socket Mode, or using the Events API.
From a quick search through this repository, socket mode doesn't seem supported yet. I don't think the events api is implemented yet either? Not certain though, it seems one is more a transport layer, and the other is more an application layer 🤷