开发者

how can use start and count in the linkedin api?

开发者 https://www.devze.com 2023-01-20 23:14 出处:网络
i am using linked api for profile search.. the api is \"\"http://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,headline,public-profile-url))?keywords=[\" + txtsearch.Text + \"]\";

i am using linked api for profile search.. the api is ""http://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,headline,public-profile-url))?keywords=[" + txtsearch.Text + "]";"

but i get only开发者_高级运维 10 profiles at a time.. so how can i get all the profile related to that search.

with regards. plz do reply


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

This is to fetch records from 25 till 49. But anyway there are limitation of Linkedin API on number of records you can query. This depends on you account type.

txtsearch.Text should be url-encoded.

Details are at http://developer.linkedin.com/docs/DOC-1191.

0

精彩评论

暂无评论...
验证码 换一张
取 消