2
votes
1answer
35 views

how to parse variable having xml data rails?

I am to retrieve value from variable 'user' having following #<LinkedIn::Profile:0x00000001758bd0 @doc=#<Nokogiri::XML::Document:0xbac674 name="document" ...
0
votes
2answers
24 views

getting “undefined method `auth_code' for ”Client function“:String”

I am trying to run a simple authentication call to retrieve profiles via linkedin. I am running ruby on rails and tried the example "http://developer.linkedin.com/documents/code-samples" explained ...
-1
votes
0answers
25 views

how to send linkedin connection request using linkedin gem

I am using linkedin in my application for authentication using Omniauth-linkedin. I able to login with linkedin credentials. According to my requirement I have to send linkedin connection request to ...
0
votes
1answer
42 views

How to handle user revoking LinkedIn access in rails

How should I handle a user revoking my access to their LinkedIn account? I am using Ruby on Rails with Omniauth, Omniauth-LinkedIn and linkedin gem (latter incorporates oauth gem). My controller code ...
3
votes
1answer
141 views

“Access to posting shares denied” error when posting public messages using the linkedin api

I am trying send out messages using the linkedin ruby api to the API end point : http://api.linkedin.com/v1/people/~/shares, but everytime I get this error : LinkedIn::Errors::AccessDeniedError ...
0
votes
0answers
37 views

I cant save to my user model attribute called linkedin_link

The linkedin api returns me a hash whi i transformed in that way. In the rails console it returns me exactly the string i need but when my worker runs it doesnt save the result. So my code is: class ...
0
votes
1answer
249 views

Refresh LinkedIn token with omniauth before expiration

I have a Rails (3.2.11) application that allows users to post updates to their LinkedIn profiles. I'm currently using the omniauth-linkedin gem to capture the initial user authentication and the ...
2
votes
1answer
123 views

Linkedin Permissions : only serving current position informations

This question is related to the same one here, but still i am facing the same problem that linkedin is only serving the current position informations , how can i get the past positions & education ...
0
votes
0answers
188 views

How to use LinkedIn's Share API with the Rails Gem

I'm running Rails 3, with the LinkedIn API gem: here I've been unable to get the Share API working as described here This works fine: response = client.add_share(:comment => 'new share API') ...
1
vote
0answers
122 views

Linkedin skills data using omniauth

I am trying to fetch linkedin data of user using omniauth and omniauth-linkedin. For skills I am getting data like #<Hashie::Mash id=16 skill=#<Hashie::Mash name="AJAX">>, ...
1
vote
1answer
91 views

Rails LinkedIn API gem

I am using the Rails LinkedIn API gem. https://github.com/pengwynn/linkedin/issues/141 I am trying to search linked in users by first and last name and so far I've come up with this: @profiles = ...
2
votes
0answers
134 views

Linked In authentication and aggregate data

I'm building a web app with Ruby on Rails and I want my users to authenticate and aggregate data from Linked In (and others like Github, Twitter, etc...). I am using these gems: Devise for ...
-2
votes
1answer
76 views

How do I post from a RoR app to LinkedIn group?

How do I use LinkedIn API, OmniAuth-LinkedIn and LinkedIn gem post feeds to my LinkedIn Group?
3
votes
1answer
331 views

LinkedIn API : How to get public url for a user

I am currently developing a Rails web application that requires a user to login through LinkedIn. After that I want to embed the Member Profile plugin in his/her profile page. For that to happen I ...
2
votes
1answer
160 views

Pengwynn LinkedIn Gem : How to follow a company

I am using pengwynn linkedIn gem in my rails project. How do I follow a company given the company id. I have written the following code, but it is not working. client = ...
0
votes
2answers
96 views

Does Linkedin's Company-Search API Throttle per-user or per-IP?

Request Linkedin API limit count records Today I was developing an application using linkedin company search api. Documentation says that a developer registration has 500 times API calls per day. ...
0
votes
1answer
174 views

linkedin people search api usage with Ruby on rails

I tried using the following code to perform a people search in LinkedIn with ruby on rails: client.search( :fields => [{ :people => %w(id first-name last-name api-standard-profile-request)}], ...
0
votes
1answer
63 views

Multiple users with omniauth during development

I'm doing my firat Rails app with Omniauth and was wundering what the best approach to the followin problem is. The application only allows users to signup/signin with their LinkedIn account - I ...
0
votes
0answers
119 views

LinkedIn API returning extra/incorrect login prompt

I have a Rails application running the omniauth-linkedin gem and linkedin gem (essentialy an API wrapper). When a user logs in, they receive a primary login prompt that displays to them the correct ...
1
vote
0answers
239 views

New LinkedIn Permissions - Scope Not Being Communicated

LinkedIn recently changed their API to require that third parties be more explicit in what information they request. In order to access a user's past employment history and education with omniauth, ...
4
votes
1answer
1k views

New LinkedIn Permissions Problems (Rails omniauth-linkedin gem)

I'm using the omniauth-linkedin gem for my rails application: https://github.com/skorks/omniauth-linkedin It should be taking into account new LinkedIn permissions request procedures and scopes, but ...
1
vote
1answer
187 views

New LinkedIn permissions: accessing past positions and educations using rails LinkedIn gem

Linkedin recently updated their API, making it less restrictive in terms of what you can access in some cases but generally more explicit in terms of how you must access it. In particular, you must ...
0
votes
1answer
391 views

Rails 3 Linkedin API gem

I'm trying to set up the linkedin api in a rails 3 app using the linkedin gem. I don't want the user to have to authenticate my app in order for the API to get their info. I only need one piece of ...
0
votes
1answer
117 views

Overriding Omniauth key/secret combinations from a controller in rails

I have an Omniauth setup in rails, with a regular omniauth.rb configuration file in config/initializers, for example: provider :twitter, :setup => lambda { |env| twitter_key = ...
1
vote
2answers
118 views

How to make my application run fast with facebook and linkedin?

Please bear with me while I provide a short background: My application retrieves user data from Facebook and LinkeIn. Both have very strict terms of use. Specifically, they do not allow to save ...
0
votes
2answers
179 views

How to get location field from linkedin api while fetching network updates

I want to fetch location of person and connections so how should I specify fields for this purpose? ...
0
votes
1answer
93 views

rails linkedin gem: how to scan all user fields for emptiness

quick question: i'm using the linkedin gem to pull user data, but my app breaks if a particular data field is blank on the user's linkedin profile. is there an optimal way to scan each profile for ...
0
votes
0answers
64 views

LinkedIn with onmiauth profile information

Is there a way I can save a logged in users profile information within my Rails app? at the present I have the following block of code in my user.rb model - def self.from_omniauth(auth) ...
0
votes
0answers
194 views

Integrating Omniauth and LinkedIn Gem?

Stuck! I'm trying to integrate my omniauth_callbacks_controller.rb with the linkedin gem so that I can make API calls in addition to the basic linkedin authentication provided by omniauth. I am ...
0
votes
1answer
228 views

Combining pengwynn linkedin gem with devise/omniauth?

I'm trying to follow this link for help integrating the linkedin gem with an omniauthable devise Rails platform. http://renderedtext.com/blog/2011/08/17/how-to-use-linkedin-gem-with-omniauth/ Two ...
0
votes
2answers
338 views

Ruby Rails LInkedIn Gem (get connected or non-connected profile information)

After getting a profile hash from the LinkedIn Ruby Gem, but I'm looking for a way to get more information from the user, like skills, their connections, their email, their profile pic, etc. I'm not ...
0
votes
1answer
297 views

Linkedin Ruby Gem (token rejected in callback)

I've been using the LinkedIn Ruby Gem and having a problem. Here is the output from my rails server. Started GET ...
0
votes
1answer
302 views

Rails 3 Linkedin Gem (how to authenticate across view actions after getting tokens)

In my session_controller.rb I have this: require 'linkedin' class SessionController < ApplicationController def connect # get your api keys at https://www.linkedin.com/secure/developer ...
1
vote
1answer
93 views

How to aceess linked api security code using server to server call in ruby on rails

I am using Ruby on Rails(3.2.3) and omniauth/linkedin gems I have authorized my web application from the user . After granting access linked redirect user to a page with security code like given ...
0
votes
1answer
150 views

How to get recommendation for the user using 'linkedin' gem?

I am able to get user information like user connections,education details, and work history. is it possible to get recommendations for the logged in user using this gem 'linkedin', :git => ...
0
votes
1answer
43 views

How to deactivate the session in rails3?

I am using 'linkedin', :git => "git://github.com/pengwynn/linkedin.git" gem to connect with linkedin. once i connect with linked in forwarded to my application the session maintains outside my ...
-1
votes
1answer
136 views

Is it possible to get looggedin user email id from linkedin rails?

I am using the following gem to connect and get details from linkedin gem 'linkedin', :git => "git://github.com/pengwynn/linkedin.git" is it possible to get authenticated user's email id or the id ...
0
votes
1answer
160 views

How to get logged in user's complete profile information using gem 'linkedin', :git => “git://github.com/pengwynn/linkedin.git”?

I am using gem 'linkedin', :git => "git://github.com/pengwynn/linkedin.git" when i create client and get profile i get the following values headline: url: last_name: first_name:summary my ...
-1
votes
2answers
215 views

How to get user profile using gem 'linkedin', :git => “git://github.com/pengwynn/linkedin.git”

I know that this is very basic and silly question, but as I am a starter and looking for example from morning to use gem 'linkedin', :git => "git://github.com/pengwynn/linkedin.git". Please provide ...
1
vote
2answers
262 views

how to solve git error while installing linkedin from git://github.com/pengwynn/linkedin.git?

i get this error while using bundle install in ROR. Fetching git://github.com/pengwynn/linkedin.git fatal: Unable to look up github.com (port 9418) (No such host is known. ) Git error: ...
-1
votes
2answers
142 views

How to convert Linkedin client in rails to Hash

I create linkedin client like this. client = LinkedIn::Client.new("3333", "rrrrrrr") client.authorize_from_access(session[:atoken], session[:asecret]) and get profile information like this ...
0
votes
0answers
59 views

How to print Linkedin client as human readable in rails?

this is the controller class LinkController < ApplicationController def callback client = LinkedIn::Client.new("rrrrrrrrr", "ttttttttt") if session[:atoken].nil? ...
0
votes
2answers
596 views

How to get linkedin profile information in rails?

Hi i am using linkedin gem to connect with linkedin from rails. this what is my controller. class LoginsController < ApplicationController helper_method :current_user def show end def ...
1
vote
1answer
212 views

How to get user profiles using ROR+linkedin

hi I am trying to get user profile information like this once the authentication is successful, class LinkController < ApplicationController def callback client = ...
1
vote
1answer
750 views

how to solve this uninitialized constant UsersController::LinkedIn?

after successful verification from LinkedIn i forward to this controller and i get the uninitialized constant UsersController::LinkedIn this is where the control goes once the authentication is ...
1
vote
1answer
215 views

How to get user profiles in linkedin using ROR+omniauth?

I have successfully verified the linkedin credentials using omniauth and it also redirects to my application with verifier and token, using this how to get user profile information from linkedin and ...
0
votes
1answer
648 views

omniauth auth/failure message=invalid_credentials

I am using omiauth with ROR and i get the following error, omniauth auth/failure message=invalid_credentials, I am able to connect with linkedin, i am asked for user credentials after giving ...
1
vote
1answer
141 views

which the best way for integrating linkedin to ROR application?

I want to give access to my application using Linkedin like http://www.hitch.me/ in ROR application. I am new to ROR please suggest me the best solution also if any one of have done this already ...
0
votes
1answer
181 views

Skip the Ruby on Rails validation

I am using the LinkedIn API. While signing in with the LinkedIn API, active record validation should not work or be skipped. When a user signs in with LinkedIn then everything is empty, so can we use ...
1
vote
2answers
674 views

ruby - how to parse this LinkedIn's hash?

From LinkedIn API I got this hash: > #<LinkedIn::Mash all=[#<LinkedIn::Mash api_standard_profile_request=#<LinkedIn::Mash headers=#<LinkedIn::Mash > all=[#<LinkedIn::Mash ...

1 2