omniauth-linkedin icon indicating copy to clipboard operation
omniauth-linkedin copied to clipboard

LinkedIn OAuth strategy for OmniAuth 1.0

Results 9 omniauth-linkedin issues
Sort by recently updated
recently updated
newest added

When upgrading to the latest version of Rails 4.2.5, we could not authenticated with LinkedIn becuase we started getting the following error: **uninitialized constant OmniAuth::Strategies::LinkedIn::MultiJson.** The list of gems is...

how to use Omniauth callback with LinkedIn API? I'm trying to use following js code ```javascript const url = `/users/auth/linkedin/callback`; IN.User.authorize((e) => { this.sendRequest(url,{}); // send post request without any...

The default picture url is quite small. This change pulls in the original size image.

The headline is typically very short (and often just the current job title). The summary is a longer description of the person, and more suitable for the description field.

Hi, I am getting **403**, access to network denied error everytime when I try to share or fetch network updates. I have followed the README, and used linkedin gem to...

Now you can get image in your user.rb with auth[:extra][:raw_info][:pictureUrls][:values].first thx

My omniauth configurations look like: `Rails.application.config.middleware.use OmniAuth::Builder do provider :linkedin, ENV["linkedin_key"], ENV["linkedin_secret"] provider :identity, on_failed_registration: lambda { |env| SessionsController.action(:new).call(env) } end` I have rechecked my key / secret value and...

Without any changes suddenly linked-in stopped working on live server - works well on local copy (the same API keys). After click connect with linkedin i see only {}: ![image](https://cloud.githubusercontent.com/assets/1079965/4217348/7ad33900-38e6-11e4-9ac8-cfc0a304c0e5.png)...

Hi everyone, I have token of user and want request it to get EMAIL. HOW to config it get 'full profile' instead 'basic profile' my code: ``` IN devise.rb: config.omniauth...