Linkedin REST API - How to return more job bookmarks / records each call -
i'm trying job bookmarks (30+) via linkedin rest api seems every call returns same exact & 10 records max.
get https://api.linkedin.com/v1/people/~/job-bookmarks
then found end https://developer.linkedin.com/docs/rest-api seems can pass parameter - count: maximum number of items want included in result set. thought maybe can add @ end of url...
new query https://api.linkedin.com/v1/people/~/job-bookmarks&count=30
then got error - 400 bad request
does know how solve problem? many thanks!
you need start query string '?' instead of '&'.
https://api.linkedin.com/v1/people/~/job-bookmarks?count=30
you use '&' separate query parameters. example if wanted page through job book marks use 'start' parameter offset paging. path next page if have more 30 bookmarks this.
https://api.linkedin.com/v1/people/~/job-bookmarks?count=30&start=31
Comments
Post a Comment