-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No longer works with oauth2 gem v2.0+ #68
Comments
I had the same issue and spent some time digging, it looks like we need to add
I just created a local oauth2 strategy for now, but if this fix works for you (creating a local strategy or editing your bundled gem to test this fix) then I can create a PR to update this. |
@bolinkd I can confirm that your fix does indeed work. Thank you! I'm adding it to my app to the module OmniAuth
module Strategies
class LinkedIn < OmniAuth::Strategies::OAuth2
def token_params
super.tap do |params|
params.client_secret = options.client_secret
end
end
end
end
end I've also noticed the following warning (?) in the Rails logs while logging in using LinkedIn OmniAuth:
|
Thank you @bolinkd & @pjg you saved my day ! # lib/strategies/linkedin.rb
module OmniAuth
module Strategies
class LinkedIn < OmniAuth::Strategies::OAuth2
def token_params
super.tap do |params|
params.client_secret = options.client_secret
end
end
end
end
end # config/initializers/devise.rb
require "strategies/linkedin"
...
... |
Thanks for the answer, it solves my issue with my local application. for the context: I am developing a Ruby on Rails 7 web application that uses the omniauth-linkedin-oauth2 gem for LinkedIn authentication. The app works fine locally with the LinkedIn credentials defined in config/credentials.yml.enc. However, when I try to deploy the app to Heroku, I get the following error during asset precompilation: NoMethodError: undefined method
-----> Installing node-v16.18.1-linux-x64
|
This error looks like you have not set up your credentials in your production.rb file |
Thanks, indeed it was that. |
Since #71 has been merged and released as v1.0.1 I'm closing this issue. |
Looks like the latest oauth2 changes broke this gem. After upgrading I'm seeing the following error in the callback phase:
I have omniauth configured at Devise as:
(both ENV keys are present).
And my omniauth initializer looks like this:
It works if I downgrade back to oauth2 v1.4.10.
The text was updated successfully, but these errors were encountered: