我正在编写一个C#应用程序来使用Linkedin的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)?
Run Code Online (Sandbox Code Playgroud)
这样做(有:first-name=parameter&last-name=parameter after the ? mark)
问题是,我想要检索更多信息,如:标题,行业,当前公司,当前学校等.请参阅此处的可能参数列表
这种表示法就是他们所说的Field Selectors
我如何构建我的API调用,以便我可以获得有关某人的所有可能信息?