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
you'll see %{"error" => "invalid_auth", "ok" => false}
I think the only way to fix this for new apps (my old app seems to still work) will be to upgrade this adapter to not use the RTM API
The text was updated successfully, but these errors were encountered:
JediLuke
changed the title
Slack has deprecated the RTM API, and it won't work with new apps
Slack has deprecated the RTM API, and it won't work with new apps (error msg: {:error, :no_scheme}`
Mar 17, 2022
JediLuke
changed the title
Slack has deprecated the RTM API, and it won't work with new apps (error msg: {:error, :no_scheme}`
Slack has deprecated the RTM API, and it won't work with new apps (error msg: {:error, :no_scheme})
Mar 17, 2022
If you make a new Slack app and try to use Hedwig, it won't work, you'll just get this very confusing error:
The issue is that Slack has deprecated the RTM API, in favour of the Events API - see https://api.slack.com/authentication/basics
If you use IO.inspect on the
data
you get back here https://github.com/hedwig-im/hedwig_slack/blob/master/lib/hedwig_slack/adapter.ex#L45you'll see
%{"error" => "invalid_auth", "ok" => false}
I think the only way to fix this for new apps (my old app seems to still work) will be to upgrade this adapter to not use the RTM API
The text was updated successfully, but these errors were encountered: