0

我正在使用链接 api 进行个人资料搜索.. api 是“”http://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,headline,public-profile -url))?keywords=[" + txtsearch.Text + "]";"

但我一次只能获得 10 个配置文件。所以我怎样才能获得与该搜索相关的所有配置文件。

带着敬意。请回复

4

1 回答 1

0

试试http://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,headline,public-profile-url))?keywords= " + txtsearch.Text + " &count=25&开始=25"

这是从 25 到 49 获取记录。但无论如何,Linkedin API 对您可以查询的记录数量有限制。这取决于您的帐户类型。

txtsearch.Text应该是 url 编码的。

详情见http://developer.linkedin.com/docs/DOC-1191

于 2010-10-29T06:25:15.407 回答