-
Notifications
You must be signed in to change notification settings - Fork 147
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
You need to pass the "client_id" parameter #56
Comments
I'm having the same issue. Did you figure out what is causing this ? |
No I never got a response
|
This is caused by the client_id not being put into the linkedin log in URL. Has anyone encountered a problem like that before? |
Hi there, did anyone figure out a way? |
For others that hit this, it's pretty easy to work around by overwriting the authorize_url. Example for those using Devise: config.omniauth :linkedin, ENV['LINKEDIN_APP_ID'], ENV['LINKEDIN_APP_SECRET'], {
scope: 'r_liteprofile,r_emailaddress',
authorize_url: "https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=#{ENV['LINKEDIN_APP_ID']}"
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Getting this error: You need to pass the "client_id" parameter when I add the client_id manually to the url and hit return it works fine?
screenshot:http://snap.recruiterswebsites.com/3d7a462fdf68
The text was updated successfully, but these errors were encountered: