tags:

views:

3

answers:

1

hello to all, 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

A: 

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.

sergdev