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
I ran into this while getting started. Given the example:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :slack, "API_KEY", "API_SECRET", scope: "identify,read,post", team: 'XXXXXXXX'
end
XXXXXXXX needs to be a team ID, like TXXXX, rather than a Team domain name, like my-awesome-team. It should be possible to check this with regex at startup time.
I left feedback with Slack to implement at the server level, so they raise an error if you pass an invalid Team ID (like when using a team domain instead).
The text was updated successfully, but these errors were encountered:
I ran into this while getting started. Given the example:
XXXXXXXX
needs to be a team ID, likeTXXXX
, rather than a Team domain name, likemy-awesome-team
. It should be possible to check this with regex at startup time.I left feedback with Slack to implement at the server level, so they raise an error if you pass an invalid Team ID (like when using a team domain instead).
The text was updated successfully, but these errors were encountered: