omniauth-slack
omniauth-slack copied to clipboard
omniauth-slack ruby gem
Any plans to migrate over to use Slack's v2 OAuth flow? https://api.slack.com/authentication/migration#update_oauth
I had the following in my Gemfile... gem 'omniauth-oauth2', '~> 1.7' After a bundle update omniauth-oauth2 went from v.1.7.3 -> 1.8.0 That caused errors when authenticating with Slack as follows......
Hi everyone, I got this error. `NotImplementedError in Overrides::CustomOmniauthCallbacksController#redirect_callbacks` `no default_devise_mapping set` here is how I set it up `omniauth.rb` `provider :slack, ENV['SLACK_ID'], ENV['SLACK_SECRET'], { scope: 'identity.basic,identity.email,identity.team,identity.avatar', provider_ignores_state: true }`...
In order to adapt to the new code on Oauth2 gem we send the access_token_class as client param instead of sending it as param to get_token method Fixes https://github.com/ginjo/omniauth-slack/issues/22
I'm working on something new and have been playing with this gem before and after this 2.5.0 update I see now the Auth hash is pretty barebones: > The omniauth-slack...
OmniAuth 2.0 was released includes to resolved CSRF vulnerability [CVE-2015-9284](https://nvd.nist.gov/vuln/detail/CVE-2015-9284) and some behaviors changed. See below the release note for details. https://github.com/omniauth/omniauth/releases/tag/v2.0.0 If an OmniAuth Strategy has overridden `callback_url`, it...
Hi, @ginjo Could you review about #16 issue ?
Hi, I couldn't start rails app because of `Gem Load Error is: uninitialized constant OmniAuth::OAuth2::Response`. ### environments - ginjo-omniauth-slack 2.5.0.pre10 - omniauth-oauth2 1.6.0 - oauth2 1.4.4 - ruby 2.3.1 -...