2015-02-12 91 views
0

我使用REST console來運行LinkedIn API來收集連接的公共配置文件URL。Linkedin連接API失敗

例如,在服務,我選擇「獲取我的連接」,驗證「的O​​Auth 2」如果我嘗試以下方法要求它是確定:

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

因爲我有超過20K的連接,我有將計數限制爲小於5000.以前,我可以通過更改startcount參數運行多個查詢來收集數據。例如:

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

不過,現在,如果我在「開始」參數放一個非零數字,它總是返回一個內部錯誤(如下圖)。我該如何解決這個問題?

HTTP/1.1 500內部服務器錯誤

回答

0

我在請求500個聯繫人一次一個類似的問題:

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

而上週開始給我同樣的500 Internal Server Error

我將計數減少到100,並重新開始工作。 250也可以。

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