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

不羁岁月 提交于 2019-12-13 09:19:57

问题


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 ?


回答1:


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.



来源:https://stackoverflow.com/questions/27752480/how-to-get-summary-of-connections-for-linkedin-api-using-omniauth-linkedin-gem

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!