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
We use Slack accounts authenticated by Google. Currently, SlackAPI includes two AuthModes -- normal and saml -- and it throws an error whenever authenticating into one of our bot accounts, which don't use either method.
I was able to get SlackAPI to work by making the following addition to TeamPreferences.cs:
public enum AuthMode
{
normal,
saml,
google
}
Thanks!
The text was updated successfully, but these errors were encountered:
christopherliu
changed the title
Need AuthMode "google"
SlackAPI fails logging into Google authenticated Slack accounts (need AuthMode "google")
Aug 24, 2017
Hello!
We use Slack accounts authenticated by Google. Currently, SlackAPI includes two AuthModes -- normal and saml -- and it throws an error whenever authenticating into one of our bot accounts, which don't use either method.
I was able to get SlackAPI to work by making the following addition to TeamPreferences.cs:
Thanks!
The text was updated successfully, but these errors were encountered: