Linkedin连接API失败

Linkedin连接API失败,linkedin,Linkedin,我使用运行LinkedIn API来收集连接的公共配置文件URL 例如,在服务中,我选择Get My connections,Authentication OAuth 2,如果我尝试以下请求,它是OK的: https://api.linkedin.com/v1/people/~/connections:(public-profile-url)?start=0&count=4000&modified=updated 因为我有超过20K个连接,所以我必须将计数限制在5000以下。以

我使用运行LinkedIn API来收集连接的公共配置文件URL

例如,在服务中,我选择Get My connections,Authentication OAuth 2,如果我尝试以下请求,它是OK的:

https://api.linkedin.com/v1/people/~/connections:(public-profile-url)?start=0&count=4000&modified=updated
因为我有超过20K个连接,所以我必须将计数限制在5000以下。以前,我可以通过更改start和count参数来运行多个查询来收集数据。例如:

start=0&count=4000
start=4001&count=4000
start=8001&count=4000
等等

然而,现在,如果我在“start”参数中输入一个非零的数字,它总是在下面返回一个内部错误。我如何解决这个问题

HTTP/1.1500内部服务器错误


我在一次请求500个联系人时遇到了类似的问题:

https://api.linkedin.com/v1/people/~/connections:(public-profile-url)?start=0&count=500&modified=updated
上周,这开始给我同样的500内部服务器错误

我把计数减少到100,它又开始工作了。250也行

https://api.linkedin.com/v1/people/~/connections:(public-profile-url)?start=0&count=100&modified=updated