Skip to main content
 首页 » 编程设计

api之如何检索有关LinkedIn帐户的所有可能信息 (使用C#的API)

2024年09月07日20zhenyulu

我正在编写一个C#应用程序以使用Linkedin's API

我希望能够查询“人”(名字+姓氏)并检索有关此人群的所有可能信息with the same name
我目前正在使用自己的REST API实现以及People-Search API调用。

这是我知道有效的请求示例:

https://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,headline,picture-url),num-results)? 

我用 first-name=parameter&last-name=parameter after the ? mark运行它

问题是,我想检索更多信息,例如标题,行业,当前公司,当前学校等。请参阅 here以获取可能的参数列表。

这就是他们所说的 Field Selectors

我如何构造我的API调用,以便我可以获得有关某人的所有可能信息?

请您参考如下方法:

您已经记下来了,只需要做的就是添加其余的字段选择器,将它们嵌套在需要的位置:

https://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,headline,picture-url,industry,positions:(id,title,summary,start-date,end-date,is-current,company:(id,name,type,size,industry,ticker)),educations:(id,school-name,field-of-study,start-date,end-date,degree,activities,notes)),num-results)?first-name=parameter&last-name=parameter 

请记住,根据 Profile Field docs,您只能获得当前用户的1级学位教育。