Getting all public basic profile information from Linkedin API

只愿长相守 提交于 2019-12-13 05:53:44

问题


I am looking for a way to get all public profile information from linkedin API just in the same way one would see it in the public linkedin directory:

https://www.linkedin.com/directory/people-a/

Is this possible? with or without authentication?


回答1:


The current linkedin api I think only works for its own profile. There's not an API for retrieve information of the other profiles, you'll need write your own scraper




回答2:


Not exactly the same as the directory. But with the list of public profiles you can get the the details from the below API.

https://api.linkedin.com/v1/people/url=URLENCODED_PUBLIC_PROFILE_URL?format=json

Example:

https://api.linkedin.com/v1/people/url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Farunkumar-krishnan-02536015?format=json

will fetch my user profile in json format. One can build a directory of known users from this.

Hope it helps!



来源:https://stackoverflow.com/questions/32233776/getting-all-public-basic-profile-information-from-linkedin-api

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