Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
325 views
in Technique[技术] by (71.8m points)

How to get summary of connections for LinkedIn API using omniauth-linkedin gem

I was trying to get summary of connections using omniauth-linkedin gem

here is the configuration details on the same

Code

:scope => 'r_fullprofile r_basicprofile r_emailaddress r_network', 
:fields => ["id", "summary","positions", "location:(name)", "email-address", "first-name", "last-name", "headline", "industry", "connections:(headline,first-name,last-name,summary,interests,skills,educations)"]

But Linkedin API returning only headline, firstname and lastname .

Is there anyway I can get details ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Please read the documentation for the Connections API. As is stated in the documentation:

"For 1st degree connections, you may only retrieve profile fields available with the r_basicprofile member permission"

interests, skills and educations are not available with the r_basicprofile permissions.

The summary field is available with the r_basicprofile permission, but the documentation notes

"Not available via connections API."

This is why you are unable to get these fields when you make the call you provided.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...